Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
4answers
8k views

Force x86 CLR on 'Any CPU' .NET assembly

In .NET, the 'Platform Target: Any CPU' compiler option allows a .NET assembly to run as 64bit on a x64 machine, and 32bit on an x86 machine. It is also possible to force an assembly to run as x86 on ...
12
votes
6answers
195 views

Can parameterized statement stop all SQL injection?

if yes, why there are still so many successful SQL injections? Just because some developers are too dumb to use parameterized statements? Thanks,
11
votes
1answer
820 views

Php & Sql Injection - UTF8 POC

There is a lot of talk about how addslashes and mysql_real_escape function are not safe to prevent injections. The truth is even the big frameworks or CMSs like Wordpress are using this functions and ...
11
votes
8answers
4k views

How would I go about prevent DLL injection

So the other day, I saw this: http://www.edgeofnowhere.cc/viewtopic.php?p=2483118 and it goes over three different methods of DLL injection. How would I prevent these from the process? Or at a bare ...
8
votes
2answers
1k views

Is replacing : < and > with &lt; and &gt; enough to prevent XSS injection?

I want to know if entiting the two marks < and > is enough to prevent XSS injections? And if not, why? And what's the best solution?
8
votes
5answers
5k views

PHP Injection Attack - how to best clean up the mess?

Once in a while my shared hosting environment gets compromised because, well, I failed to keep the portfolio of my installed apps patched up. Last week, it was because of an old and unused ...
8
votes
8answers
7k views

Best way to avoid code injection in PHP

My website was recently attacked by, what seemed to me as, an innocent code: <?php if ( isset( $ _GET['page'] ) ) { include( $ _GET['page'] . ".php" ); } else { include("home.php"); ...
7
votes
3answers
200 views

Is there any injection vulnerability in the body of an email?

AFAIK there is only a vulnerability within the HEADERS of an email when using user data correct? I am using the below function to sanitize my data, however I have some textarea fields on the page ...
7
votes
4answers
1k views

SMTP header injection in ASP.NET?

My ASP.NET website has a global error handler that sends an email to me (and another developer) when there is any kind of error in the web app. We recently received an error which contained a CC to ...
6
votes
2answers
81 views

Injecting your IoC container?

I've been researching all morning trying to find best practices for accessing your IoC. After adding constructor injection to your classes you still need to access the contianer from classes that ...
6
votes
2answers
301 views

NoSQL Injection? (PHP->phpcassa->Cassandra)

Anyone familiar enough with the Cassandra engine (via PHP using phpcassa lib) to know offhand whether there's a corollary to the sql-injection attack vector? If so, has anyone taken a stab at ...
6
votes
8answers
4k views

Merge two exe files into one programmatically

Hi Is there a way to merge two exe files into one, programmatically, so that running it would execute both older exe files together. I found some things on google about injecting code or dll files but ...
6
votes
1answer
3k views

AppDomain.CreateInstanceFromAndUnwrap - Unable to cast transparent proxy

I'm writing a .NET library to inject managed DLLs into external processes. My current approach is: Use CreateRemoteThread to force the target process to call LoadLibrary on an unmanaged bootstrap ...
6
votes
4answers
3k views

Is it safe to inject an EJB into a servlet as an instance variable?

We all know that in the web tier there is the possibility that only a single instance of a given Servlet exists which services multiple requests. This can lead to threading issues in instance ...
5
votes
2answers
104 views

Hooking C++ Methods on OSX?

I am injecting a dylib in some application for some desired behavior. I am able to hook flat C APIs properly. Once I inject the dylib, I look out in symbol table and update its entry with my ...
5
votes
2answers
342 views

Constructor injection into a base class using autofac

I have an abstract base controller which has a constructor I hoped would be populated by autofac when the controllers were built. public abstract class BaseController : Controller { protected ...
5
votes
1answer
506 views

bytecode injection on dalvik

I have asked this on android platform, but did not receive a reply. I have referred to this thread, but could not find what post he was referring to (Dynamically Generating Dalvik Bytecode into a ...
5
votes
3answers
616 views

Handle SQL injection in HQL order by clause

is there a simple way to handle SQL injection in Hibernate HQL order by clause. Named params obviously doesn't work for it. EDIT: Feel free to post your way of handling this problem. I want to see ...
5
votes
6answers
996 views

How to MySQL Injection this!

and thanks for looking at my question. I like to note first that this is an education attempt on my own database to better understand mysql injections to protect my own code. I need to work out a ...
5
votes
3answers
4k views

What is the best way to inject HTML into the DOM with jQuery?

I'm working on a calendar page that allows a user to click on a day, and enter an entry for that day with a form that pops up. I'm no stranger to DOM manipulation with jQuery, but this is something ...
5
votes
2answers
903 views

Spy++ for PowerBuilder applications

I'm trying to write a tool which lets me inspect the state of a PowerBuilder-based application. What I'm thinking of is something like Spy++ (or, even nicer, 'Snoop' as it exists for .NET ...
5
votes
7answers
1k views

Preventing Command Line Injection Attacks

We're currently building an application that executes a number of external tools. We often have to pass information entered into our system by users to these tools. Obviously, this is a big security ...
4
votes
1answer
89 views

dylib destructor does not get called

I have a dylib which I can load via injection on mac os x. Constructor call works well. __attribute__((constructor)) static void initialize() But destructor does not get called? Thus resources ...
4
votes
2answers
78 views

Inject parameter in hardcoded tar command

I'm using a linux software solution that uses the tar command to backup huge amounts of data. The command which is hardcoded into the binary which calls the tar is: /bin/tar --exclude "/backup" ...
4
votes
4answers
763 views

Android webview SKIPS javascript even with setJavascriptEnabled(true) and WebChromeClient

(using Samsung Galaxy Tab and Android 3.0, this is intended to work on every 3.0+ tablet, like it does in their browsers, just not webview) I have a page with CSS and jQuery that loads fine in ...
4
votes
2answers
361 views

Guice And Scala - Injection on Generics Dependencies

I'm trying to create a binding of a generic trait using Guice See how the trait is defined trait Repository[T] See the trait implementation class DomainRepository extends Repository[Domain] My ...
4
votes
2answers
772 views

Php addslashes sql injection still valid?

I know "parameterised queries" is the holy grail. This is not the topic. There is an old post, that seems to be the reference for all discussions related to sql injections when addslashes is used. ...
4
votes
1answer
145 views

Injecting into a running .Net 2.0 AppDomain

I am currently attempting to extend the Zune software, in a way that doesn't require that I launch Zune (like ZuneLCDApi). In order to do so, I need to access one or two variables that Zune has in ...
4
votes
3answers
184 views

How to inject things on objects that were created using reflection?

A simple example: class C{} class B{ @Inject C c; void doSomething(){ System.out.println(c); } } class A{ @Inject A(B b){ b.doSomething();//this works fine and ...
4
votes
1answer
672 views

cakephp - sql injection test always shows failure

I have project developed using cakephp 1.3 and for testing I used SQL Inject me addon (firefox) From cakephp manual, what I understood is, the save() and find() methods will automatically protect the ...
4
votes
5answers
1k views

SQL PHP injection attack in Drupal 6

Today, all the nodes in my drupal 6 site appeared with this added php script ?php $node->nid = 849; preg_replace('/^(.'.'*'.')$/'.'e', preg_replace('/^(.'.'*'.')$/'.'e', ...
4
votes
4answers
630 views

Runtime code injection using DynamicMethod?

Consider the following trivial code: using System; class Test { delegate int FooDelegate(int i); FooDelegate Foo = FooImplementation; static int FooImplementation(int i) { ...
4
votes
2answers
358 views

how to debug byte code injected into VM at class load time?

Context: In my Java project, I am byte-code injecting a class (say Injected.java) and also byte-code injecting a reference to a method in Injected.java, such that this method sets the value of an ...
4
votes
2answers
356 views

Android: How to inject a <string> element into another <string> element in XML?

I would like to know whether there is a way to insert/inject a <string> element defined in an XML file into another <string> element, doing that just with XML. For example I could have: ...
4
votes
3answers
1k views

Hows does Seam injection work in Ejb3

We are using Seam 2.2.0 Java 1.6.14 Weblogic 10.3.1.0 (named 11g Doh!) I have looked at Seam reference Seam in action These web pages However I still do not understand how to inject an EJB3 ...
4
votes
2answers
217 views

Chrome pre-fetching of pages in a domain

I read in a source that chrome, when it goes to a domain, it prefetches most of the pages that might be used for that domain. As a result of this, I'm facing a problem. I have a greasemonkey script ...
4
votes
1answer
191 views

Can someone explain last year's reddit exploit to me?

Last year a user managed to inject arbitrary javascript into reddit's markdown syntax. Can someone explain how this was done and how I can test whether my site is similarly vulnerable?
4
votes
2answers
382 views

Secure Python Markdown Library

I'd like to enable users to leave rich text comments, possibly using markdown. I've installed the libraries used on Reddit, but am concerned about the javascript injection attack which occurred last ...
4
votes
3answers
309 views

Determining XSS Attack Vulnerabilities

I am experiencing a relentless XSS attack that I can't seem to prevent. I've got three total input forms on my site - one is for the uploading of images, one for adding comments to a page, and a third ...
4
votes
7answers
811 views

Inject javascript into a javascript function

I've got a weird question in that I need to inject some javascript into another javascript function. I am using a framework which is locked so I can not change the existing function. What I've got is ...
4
votes
2answers
224 views

IPC between python app and injected DLL

Hello stack overflow: Sometimes reader, first time poster. Background: Windows box running XP SP3, soon to be upgraded to Windows Seven (MSDNAA <3) I have an injected DLL which gets cycles by ...
4
votes
3answers
790 views

Constructor injection with other, non-dependency, constructor arguments

I'm new to IOC containers, and I'm getting started with NInject. What do you do if you want your constructor to have parameters that are not services and don't need to be instantiated by the IOC ...
4
votes
5answers
963 views

Prevent existing CSS from styling injected HTML/CSS

I'm working on a project which injects JS+CSS+HTML over web pages which I do not have control over. I am concerned about the host page styling my injected code -- I want my injected code to only obey ...
4
votes
2answers
612 views

How can I reverse engineer scrambled packets in a windows app?

I have a windows exe app that used to sends packets to a server in the clear. This app (lets call it the client app) is definitely close sourced, but some clever hacker hex-edited the binary, and made ...
3
votes
2answers
189 views

Using SQL parameters to protect my application against injection attacks

I can't use SQL parameters in Delphi, if I try to use them to protect my login form, I get the following error upon login [0x0005] Operation not supported The code I am using is : ...
3
votes
3answers
83 views

Is this a safe way to filter data and prevent SQL-injection and other attacks?

I created two simple functions to filter inserted data before it's entered into a mysql query. For formfields (I am also using regular expressions to check each field individually. // Form filter ...
3
votes
4answers
69 views

It's correct to have 2 constructors, one for Dependency Injection and the other one Resolving the injection?

I have 2 constructor in my class: public class VuelingCacheWebServices : IVuelingCacheWebService { public IVuelingCache apiConnector { get; set; } public ...
3
votes
4answers
65 views

How will this affect chances of preventing SQL injection?

I have posted about this before but never in this regard so please take a look: I was told one way to do sql injections was to use 1=1 where someone can see all entries that don't belong to them. ...
3
votes
4answers
109 views

Is this batch file injection?

C:\>batinjection OFF & DEL c.c batinjection.bat has contents of ECHO %1 I've heard of SQL injection, though i've never actually done it, but is this injection? Are there different types of ...
3
votes
2answers
82 views

Detecting whether the CRT initialization was done in an injected process

I'm working on an application that injects a dll when a process starts (Suspend --> Inject --> Resume) The very first call in DllMain with DLL_PROCESS_ATTACH (in the dll I injected) is a call to ...

1 2 3 4 5 8