BlackHat SEO Injection in ColdFusion [closed] - coldfusion

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
A few of my sites got a code injection and it is the first time I am dealing with something like this. Is there any specific procedure that I can follow to debug the code and find where the source of the injection? Also, is there anything that is ColdFusion specific regarding this matter?

This question is perhaps better asked on Server Fault, not Stack Overflow. That's why you've got the close vote (it was not from me).
Update your question's tagging to include the correct ColdFusion version.
The ColdFusion 9 lockdown guide (which I found by googling "coldfusion lockdown guide", btw) is here.
Make sure you are fully patched. Fortunately Adobe are still releasing security patches for 9.0.1. Advise us here whether you are already up-to-date, or whether you are short any patch(es).
Look for files called h.cfm (in your web root directory, as well as the /CFIDE directory structure). This file is a known vector for a security hack which did the rounds at the beginning of the year.

Related

Magic Particles [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I really like this Particle Emitter software here:
http://www.astralax.com/projects/particles
They have an API and even an OpenGL Wrapper for IOS but I cannot figure out how to integrate these particle emitters in to my standard UIKit Xcode project.
They have a sample for Cocos2dX (not interested in that) and they have a sample using OpenGL (which is pretty advanced) but no easy sample of how I can integrate to my existing standard Xcode projects referencing from my standard .h and .m files.
Has anyone figured out how to use this program with basic Xcode?
EDIT: I guess it says I am "Off Topic"...never seen that here before. Curious, I didn't even know there was a specific topic going on. I'm confused (sort of why I made the post in the first place).
You can use CAEmitterLayer extented from CALayer. See Apple documentation.

Messagebox with Django [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I have to make bills in my Django Project.
Before I create this bills, I have to ask the user, which kind of Bill, he want's to create.
Therefore something like a Messagebox should be opened.
Is something like this possible in Django?
Thank's for your help!
Messageboxes are a part of the frontend, and not the backend where django mostly operates.
What you want is javascript and html, a popup messagebox is called a "Modal" and there are several implementations you can use. for example, Bootstrap seems to be popular

Bindind to keys C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
Hello there I am a realative newbie when it comes to using different "commands" in order to achieve things so I was wondering if any of you know a way to bind a key to do a certain task anywhere in the programme ,so I would be able to display a function for example and after the display finishes the programme carries on normally like nothing happened and then that same key on any other push would still do the display . Thanks in advance
Plain C++ does not have any concept of "key binding". The platform (e.g., the operating system) has this knowledge and it provides some libraries to handle it. So, you must provide more information about the operating system, or use a cross-platform library like Qt.

How is it possible to create an information fetcher for a game like League of Legends? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Basically what I'm wondering is, how could you get like a list of all mobs, champions their hp, mana etc with programming? I know this is possible because it has been done before but I just can't see how you would be able to do this. Is looking in the assembler code necessary or can you do it in some other way? I'm mostly wondering about the theory behind it. (Using C++ if that helps anything at all)
Such things are usually done using crawling (e.g. retrieving the data from the web pages provided by Riot Games; might be partially outdated) or using reverse engineering to get this data from the game client's files (might not contain everything). In either way you'd get datasets which you'll have to read or interpret (look for values or replicate the way the game client reads and interprets the data).
I'm not sure whether there are some tools or APIs released somewhere, at least I haven't heard of anything officially supported or endorsed; most of this is essentially in a gray zone usage wise.

Retrieving deleted web pages [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I have recently published a web service to my site through Visual Studio. I accidentally selected "Delete Existing Files" option!
How do I get back my deleted files from the server?
Why, you would go to your nightly back-ups and restore the files. You do have a backup solution in place don't you? Because if you don't, then you're out of luck.
In theory, if you stopped the server and yanked those hard drives right now, then forensic data recovery could POSSIBLY get some of the files back.
This might not be relevant, but: the one time this happened to me I was able to decompile the executable. The result wasn't perfect, but it got all the really tricky bits back.
IF. You don't have backups.
IF you're hosting is in a remote hosting facility call them ASAP.
and ASK if they have an automated BACKUP. You may just be lucky.