0
votes
1answer
52 views
C++ Dll Injection
Hello everyone, I would really appreciate your help in this.
I have been trying to get a Dll injected into a remote process and do a few changes inside it, the problem I'm encount …
0
votes
5answers
76 views
Position An Injected DIV Using JQuery’s “Load” Function
I'm pulling some info from a database then putting it into a DIV and injecting all that in to my page. The problem I have is positioning the newly injected DIV after it has finishe …
2
votes
5answers
190 views
Iframe Injections in Websites
My website has been compromised. Some one have injected some iframe markup in my website.
How they have done this? Only on my index.html, index.php page. But I have blocked write …
1
vote
2answers
34 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 if you want your constructor to have parameters that are not services and don't need to be instantiate …
2
votes
5answers
178 views
Java: What is the fastest way to inject fields using reflection?
Hello, everyone!
Suppose, I have a lot of classes, which are constructed using Java reflection (for some reason). Now I need to post-inject values to fields, which are
annotated …
3
votes
4answers
173 views
Classic ASP SQL Injection
I recently inherited a classic asp website with a ton of inline SQL insert statements that are vulnerable to SQL injection attacks.
These insert statements are executed via the AD …
0
votes
4answers
35 views
strange markup in HTML (HTML_ATR HTML_ELM, SYN_ROW, JS_KEY, etc..)
I've build a website for a client and as we all know 'it works just fine on my machine' :-) as it does on several machines at my clients location. But they have (so far) 3 pc's on …
0
votes
0answers
21 views
Parse out javascript injection during JSON deserialization.
I need to scan inbound string properties sent to a C# coded web server. The scan should strip out any JavaScript injection threat before my web server stores client supplied data i …
1
vote
5answers
156 views
Mysterious url in our html website
Dear Community members,
The home-page of our static html website http://www.iffort.com is transferring data from a mysterious website rawalrohi.com. You can check this by going to …
0
votes
2answers
36 views
How does container injection of annotated private class attributes work in java?
I've started reading the Enterprise Java Beans 3.0 book by Bill Burke and Richard Monson-Haefel and in chapter 4 it has this code
@PersistenceContext(unitName="titan") private Ent …
2
votes
5answers
158 views
How to MySQL Injection this!
Hello everyone, 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 m …
0
votes
2answers
211 views
Injecting Log4J loggers with Spring
Hi, I have a spring 2.5 webapp with the following web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3 …
4
votes
3answers
428 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 assemb …
2
votes
4answers
81 views
Conditional summarizing via inject
How to get the index of item in:
my_array.inject {|rs,item| rs += item}
I need to summarize all except the i-th element.
21
votes
14answers
3k views
Best way to stop SQL Injection in PHP
So specifically in a mysql database. Take the following code and tell me what to do.
// connect to the mysql database
$unsafe_variable = $_POST["user-input"];
mysql_query("INSE …
