Code injection is a type of attack which is done by adding strings of characters into a HTTP request which causes unauthorized code to be executed.
0
votes
7answers
74 views
Javascript SQL Attack: Someone inserted a script into MySQL that prevented me from deleting their row. What am I at risk for here? [closed]
A user inserted a
<script src=...> </script>
Code in my database, and using phpmyadmin, I was not able to delete the row. The page just kept refreshing everytime I tried, and the row ...
-2
votes
1answer
66 views
Inject code in .exe from .exe
Is it possible to inject some code (assembly commands) into a compiled program (.exe) from another program(.exe)? If yes, can you point me into the right direction to learn that?
0
votes
0answers
36 views
mach_override a C++ instance method
Of all the examples I've seen using mach_override, they override either C system functions or local functions, but never attempt to override a plain (not virtual) C++ member function of a class ...
0
votes
2answers
111 views
security flaw - veracode report - crlf injection
I got the veracode report for my javaEE app. It had a flaw at any logging (using log4j), so I add the StringEscapeUtils.escapeJava(log) to all of them, but veracode keeps reporting them as security ...
0
votes
2answers
42 views
Most effective method of protecting an entity ID when posting back from a view
EDIT - Just a quick edit, to start this off with a clear question! What I'm essentially asking is, what is the most effective way of protecting my entity identifiers when posting back from a view?
...
0
votes
2answers
21 views
Do I have to worry about Code Injection when I have no Database access in ASP.NET?
I got a simple Site with a textbox where the user can enter some stuff. That Text is analysed and fancy stuff is done with it (like counting the words, displaying the text in another textbox)
No ...
0
votes
2answers
104 views
Is urlencode & urldecode is sufficient for URL attacks [duplicate]
While I create URLs, first I urlencode them and when I get $_GET values from URL, first I make urldecode($_GET['param']) and then use URL parameters.
Is this sufficient or should I make any more ...
1
vote
1answer
52 views
Bizarre HTML 'Bud1% @' Injection
I'm developing a website locally in ExpressionEngine using MAMP Pro, and all of a sudden I'm getting the most bizarre issue.
My webfonts, served by Typekit, suddenly stopped functioning. Upon closer ...
0
votes
5answers
101 views
What are Java interfaces useful for and how to deal with cross-class methods? [closed]
I understand that Java Interfaces are used for declaring methods that will be used in more classes as those classes implement them. For example:
public interface MyInterface{
void myVoidMethod(); ...
0
votes
3answers
211 views
Malware has been found by Google and Yandex in our code, what is the solution and how did this happen [closed]
SO google and yandex have bothed informed us that our website has been infected with malware:
http://www.buzzmart.com/product_text.php?id=21873 Code Injection
...
0
votes
2answers
73 views
sendmail & code injection
I am sending content through 'sendmail' that includes some user supplied data.
I call it using perl, e.g.
open(MAIL, "| /usr/sbin/sendmail -fsomeone\@somewhere.com -t ")
print MAIL "the user ...
-2
votes
1answer
97 views
Is this PHP code malicious? [closed]
my site was presenting a white page. Checked with firebug nothing suspicious. It was an empty page only head and body tags. Nothing else. Checked index.php and found this
$x0b="x68ea144x65r";
...
-1
votes
1answer
69 views
Composer and packagist - how avoid malicious code injection [closed]
Is there any mechanise, which can ensure that packages uploaded into packagist.org are free from malicious code.
Is anyone looking at source code in installed/uploaded packages.
For example: What if ...
-1
votes
1answer
131 views
Calling a method from another application via code injection?
I have an application that runs on a locked down linux machine.
Its signature checked from boot so I cannot swap the application for a patched version.
However, I can run other applications from the ...
0
votes
0answers
21 views
Code injection into dlmalloc
Can somebody explain me how the exploitation of free() by injecting code in dlmalloc works?
I found this resource:
http://distrinet.cs.kuleuven.be/projects/sobenet/dissemination/docs/WTH_secmem.ppt
...
1
vote
1answer
153 views
Is “cgi.escape” necessary in a Python application?
Was looking over a developer's code. He did something that I have never seen before in a Python application. His background is in PHP and is just learning python, so I don't know if this is perhaps a ...
0
votes
1answer
103 views
How to Find Win32 Entry Point and Code Injection on Memory Preferably with Debug Apis?
I know about sniffers, and i can write one by using win32 debug apis. But here i want to find the entypoint of an executable and inject code right there. Is this possible with debug apis? Or any other ...
10
votes
2answers
229 views
Prevent external assembly injection via PublicKeyToken
I'm using the following code:
AppDomain.CurrentDomain.AssemblyLoad += (sender, args) =>
{
var token = args.LoadedAssembly.GetName().GetPublicKeyToken();
if (!IsValidToken(token))
{
...
0
votes
0answers
44 views
Securely handling user input in PHP and mySQL [duplicate]
Possible Duplicate:
What’s the best method for sanitizing user input with PHP?
I know similar questions have been asked multiple times here, and I've spent some time reading all of them, ...
4
votes
2answers
274 views
Parameterized strings and the LIKE and wildcard operator
I have seen in my searches the use of parameterized strings in SQL queries formed as below:
SqlCommand comm = new SqlCommand();
comm.CommandText="SELECT * FROM table WHERE field LIKE '%'+@var+'%'";
...
1
vote
4answers
47 views
PHP Account Security
Currently I have a site that hides the account window where you can change password, upload files, etc. The code is simple as:
<?php if($is_logged_in) { ?>
<div id="account_window">
...
5
votes
1answer
1k views
How to prevent chrome from injecting content to webpage [closed]
Recently I have discovered that my application is misbehaving in Google Chrome.
On a page with a form, after it was submitted, my application reloads page using simple method like this:
...
0
votes
4answers
240 views
SQL injection that retrieves all data in a different table that the one in the query
I own a PHP system that works on a virtual server "Wamp" on windows XP. I am trying to detect the vulnerabilities in my system using SQL injection technique.
I have tried the basic ways of injection ...
11
votes
2answers
247 views
What is {${phpinfo()}} called? (Remote Command Execution related)
I hope someone can answer this for me as I've been fairly curious about it for quite some time, haven't seemed to be able to obtain an answer though.
However, I'm sure someone here will be able to as ...
0
votes
1answer
91 views
Jump to memory in GDB causes SIGSEGV
I am trying to inject code into a running process using GDB and am getting a SIGSEGV everytime I attempt to run my code. I am on ubuntu (Oneiric). I export the code to an environment variable using a ...
8
votes
3answers
579 views
Methods of JavaScript injection using Objective-C
I'm looking for different methods of injecting JavaScript into a WebView (in Cocoa).
I am trying to inject some javascript into the <head> tag of a HTML file that has been loaded into the ...
2
votes
1answer
43 views
How to add a custom code to run in a jsp?
I want to run a custom function in a jsp. And I want to change that function time to time without re-uploading the whole program. how can I do that?
I'm talking about something like uploading the code ...
1
vote
2answers
121 views
Is it possible for me to prevent hackers from using a web console to call an upvote (AJAX) function repeatedly with JavaScript?
I recently created a website that has a voting/upvoting feature that uses jQuery's AJAX functions. The catch is: anyone can vote. I don't require visitors to be logged in, I don't track their IP, and ...
0
votes
1answer
241 views
PHP injection test cases list
I have a lit of php test cases that I want to take your word on and see how would that be a possible injection threat.
1. <BODY ONLOAD=alert("Oops! Huston we have a problem! X")>
2. ±±¾©
3. ...
0
votes
0answers
199 views
Delphi 7 - Resource to Buffer:Pointer
I have the following code to inject a dll into a running process:
function InjectLibrary(dwProcessID: DWord; pLibraryName: PChar): Boolean; stdcall;
var
dwProcessID2 : DWord;
dwMemSize : ...
0
votes
1answer
53 views
Is it safe to host javascript files for the users apps?
we have online site (application). we are letting developers / opensource community to easily embed there plugins / applications easily with javascript code.
we were wondering, should we host the ...
0
votes
2answers
172 views
“Couldn't find database jimbob_je” malware injection message in wordpress. How to remove?
I'm having this message in a wordpress site:
Couldn't connect to database server.Couldn't find database
jimbob_je.An unexpected problem has occured with the application.
SELECT statscurl_id ...
0
votes
1answer
162 views
Injection in Javascript file on server
My website is showing message in browser
"mydomain.com contains malware. Your computer might catch a virus if you visit this site."
After checking in webmaster tool I found java script file is ...
6
votes
3answers
1k views
How can I print stack trace for caught exceptions in C++ & code injection in C++
I want to have stack trace not for my exceptions only but also for any descendants of std::exception
As I understand, stack trace is completely lost when exception is caught because of stack ...
4
votes
6answers
4k views
Website iframe attack - inserts code into source
Over the last few days, my website has repeatedly been the target of an iframe attack. The code is appended mainly to PHP and Javascript pages. The code is then PHP base 64 encoded, see example ...
1
vote
1answer
724 views
How to avoid HTTP Header Injection (new lines characters)
I sometimes use user data in php function header like this :
header('Location : test' . $user_data);
I used to remove \n and \r to prevent header injection but is there any other new lines ...
-1
votes
1answer
163 views
Mac system application extension
I'm trying to modify the functionality of mission control which belongs to dock.app and I'm wondering what the preferred method of doing so would be. I've looked into using the simpler method of ...
1
vote
1answer
138 views
How hard is to code against injection/xss? (java, php, .net) [closed]
Question is not how to do input validation or other preventing methods, but how hard do you think is to use them in java/php/.net to keep your application safe.
I do not have a metric to decide if ...
1
vote
1answer
103 views
Code injection in webapplication using .net, java and php
I need to do a presentation on code injection on webapplication and how to prevent it. I am not too familiar with .net, and I mostly know about code injection on SQL or php.
Reading and searching ...
1
vote
2answers
224 views
what does this SQL statment do? select inside insert?
My instructions are to call a function when passing variables into an insert statement to prevent code injection. What does the following code do and what actually gets inserted into the database? Why ...
11
votes
4answers
812 views
Ways to stop people from uploading GIFs with injections in them?
I have a PHP website where people can fill out help-tickets. It allows them to upload screenshots for their ticket. I allow gif, psd, bmp, jpg, png, tif to be uploaded. Upon receiving the upload, ...
0
votes
1answer
94 views
Strip JavaScript functionality i.e. onclick from user input
I have a textarea setup with CKEditor (a WYSIWIG) in which the user is allowed to enter information with a few markup options. However I need to stop potential hackers exploiting this feature and ...
1
vote
4answers
86 views
What must be escaped in SQL?
When using SQL in conjunction with another language what data must be escaped? I was just reading the question here and it was my understanding that only data from the user must be escaped.
Also must ...
2
votes
1answer
273 views
Afterthought seems not working, simple code
I wrote simple piece of code to get involved into Afterthought, but it doesn't work and I've got no idea why. A huge part of it is taken from other SO question: How to implement simple Property ...
2
votes
4answers
1k views
Inject local .js file into a webpage?
I'd like to inject a couple of local .js files into a webpage. I just mean client side, as in within my browser, I don't need anybody else accessing the page to be able to see it. I just need to take ...
0
votes
1answer
96 views
Are the old days of code injection over? [closed]
I was wondering since all updated operating systems guard against stack and heap type overflows via ASLR, Canary Checks, and other such methods, are memory corruption exploits still prevalent? Given ...
0
votes
1answer
149 views
hard coded text with user input in include statement - vulnerable to a LFI attack?
I'm thinking of including files into a script, that have names based on a cookie
Something like this:
include("sometext".$mycoockie_here."some_text.php");
Is the code above vulnerable to such ...
1
vote
1answer
125 views
Which Python template engine is safe to be used by untrusted users?
I'm looking for a good standalone Python template engine that is safe, against code injecting, to be used in an application that allows untrusted users to write and edit templates. Could someone ...
1
vote
2answers
530 views
Linux library code injection & calls to identically named functions in SOs
I have built a linux shared object which I inject into a 3rd party program to intercept some dynamic function calls using LD_PRELOAD.
The 3rd party program uses a SO "libabc.so" located at some path. ...
3
votes
2answers
284 views
Safe way to execute commands on linux server when part of command is from a user input
I am reviewing a web application which exposes a functionality for the user to change his unix password via a web interface. An authenticated web user gives his unix username and his desired password. ...







