5
votes
7answers
253 views
Is code injection possible in Java?
Hi,
nowadays you can read much about code injection, exploits, buffer-, stack- and heap-overflows etc. leading to inject and run code. I wonder what of this stuff is relevant for Java.
I know, there …
0
votes
5answers
66 views
PHP: is this validity check vulnerable?
I have this code in a page that includes other files via GET request:
$page = strtolower($_GET['page']);
if(!$page or !$allow[$page] or $page == 'home') {
header("Location: home.php");
}
where …
1
vote
3answers
38 views
Sanitize Input for Unidata
Can anyone provide a function to sanitize input for a UniData query? Or provide a list of things to remove?
0
votes
3answers
415 views
Auto-hide the OS X menu bar system-wide
I wish to write a utility to auto-hide the menu bar, much like the dock. This would
replicate the a OS X 10.4-only application "Menufela", but for Snow Leopard.
[[NSApplication sharedApplication]
…
3
votes
1answer
128 views
How to prevent Coldfusion from injecting cfform.js into the head section?
An HTML template is passed to Coldfusion. The head tag of the template has additional attribute:
<head profile="http://abc.com">
The issue is that when generating the output based on this …
1
vote
2answers
129 views
How can I inject PHP code at certain points of a string variable?
I have a class that stores paths to CSS and Javascript files in arrays. This class also compiles my final page HTML output (which is stored in an $output variable). I want to loop through my $css and …
0
votes
1answer
52 views
Reading Text from Another Application’s Frame
I plan on creating a toy application to play games. Is it possible to capture game data from another applications frame? I know this is traditionally done using a low level language and using dll …
3
votes
6answers
292 views
[net]how to inject debugging code to an assembly?
Given an assembly with an entry point like:
int FooClass::doFoo(int x, double y)
{
int ret;
// Do some foo
return ret;
}
Is it possible to use yet another assembly to simulate something …
2
votes
1answer
66 views
Elevating rights to use mach_inject
How do you elevate user rights to root using the Authorization API so that it is possible to use mach_inject?
-1
votes
3answers
370 views
Do a Code Injection in C++ [closed]
Possible Duplicate:
Convert a String in C++ Code
I'm learning C++ and I want to know how I can do code injection, because I'm building a interpreter of my own language and this is the next …
2
votes
3answers
87 views
Javascript security problem…
ok, I start with a very simple method:
alert(someText);
"someText" is a variable, which users will pass a value in by a form.
Will there a chance that the user pass following text, and inject some …
3
votes
5answers
603 views
How to prevent code injection attacks in PHP?
I am abot confusing, there are so many functions in PHP, and some using this, some using that. Some people use: htmlspecialchars(), htmlentities(), strip_tags() etc
Which is the correct one and what …
3
votes
5answers
659 views
Sharing memory between two processes (C, Windows)
Since I haven't found an answer to the question asked previously here I'm trying a different approach.
Is there any way to share memory between two processes?
The second process gets the …
0
votes
1answer
211 views
Running JavaScript in a UIWebView before any other JavaScript is run
I have a UIWebView component that is going to load a webpage which might contain JavaScript. I want to run some JavaScript of my own before any JavaScript on the loaded webpage runs. I know I can use …
4
votes
2answers
245 views
Finding a 3rd party QWidget with injected code & QWidget::find(hwnd)
Hey,
I have a Qt Dll wich I inject into a third-party Application using windows detours library:
if(!DetourCreateProcessWithDll( Path, NULL, NULL, NULL, TRUE,
…
