Tagged Questions

Activities to break into computer(s) without authorized access

learn more… | top users | synonyms

504
votes
48answers
53k views

I've found my software as cracked download on Internet, what to do?

So, after 6 months of hard work finally released my application. Today I found the first web site where people download it cracked, and I was wondering if any of you fellow programmers know how to ...
61
votes
12answers
3k views

Why do salts make dictionary attacks 'impossible'?

Possible Duplicate: Need some help understanding password salt Update: Please note I am not asking what a salt is, what a rainbow table is, what a dictionary attack is, or what the purpose ...
61
votes
21answers
3k views

Black hat knowledge for white hat programmers

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 ...
46
votes
13answers
2k views

Found a critical bug, but the company doesn't care [closed]

I know several people who were in a situation like this. Let's say, you were trying out random sites for basic XSS/SQL Injection vulnerabilities, and you've found one that could be easily ...
33
votes
13answers
6k views

Reverse engineering war stories [closed]

Sometimes you don't have the source code and need to reverse engineer a program or a black box. Any fun war stories? Here's one of mine: Some years ago I needed to rewrite a device driver for which ...
25
votes
5answers
2k views

Someone has hacked my database - how did this guy do it?

Someone has hacked my database and has dropped the table :(. In my PHP page there is one single query where I am using mysql_real_escape_string: $db_host="sql2.netsons.com"; $db_name="xxx"; ...
24
votes
4answers
3k views

How to store passwords in Winforms application?

I have some code like this in a winforms app I was writing to query a user's mail box Storage Quota. DirectoryEntry mbstore = new DirectoryEntry( @"LDAP://" + strhome, m_serviceaccount, ...
23
votes
8answers
975 views

How secure is PHP?

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 ...
22
votes
10answers
5k views

well written open source projects (for learning)? [closed]

We learn programming by writing programs and learning from other programs. Which open source code repositories/programs you suggest for learning/improving programming? While citing reference please ...
20
votes
5answers
1k views

Hacked, what does this piece of code do?

WARNING: This is a possible exploit. Do not run directly on your server if you're not sure what to do with this. http://pastehtml.com/view/1b1m2r6.txt I believe this was uploaded via an insecure ...
20
votes
8answers
2k views

Hacking and exploiting - How do you deal with any security holes you find?

Today online security is a very important factor. Many businesses are completely based online, and there is tons of sensitive data available to check out only by using your web browser. Seeking ...
18
votes
5answers
500 views

What are the risks of PHP sessions?

So everyone says that sessions have security risks, I want to know what kind of risks are these? What can hackers do with sessions? This is not about knowing how to avoid attacks, I want to know how ...
18
votes
8answers
2k views

How Can I Find Out *HOW* My Site Was Hacked? How Do I Find Site Vulnerabilities?

One of my custom developed ASP.NET sites was hacked today: "Hacked By Swan (Please Stop Wars !.. )" It is using ASP.NET and SQL Server 2005 and IIS 6.0 and Windows 2003 server. I am not using Ajax ...
17
votes
6answers
4k views

Site has been hacked via SQL Injection

Recently my site was hacked via SQL injection. The Hacker used the following query to get my DB name. I cannot understand this query they wrote. Query: ...
17
votes
3answers
493 views

How secure are CDNs for delivering jQuery?

We build sites that have a public (non-secured) area and secured (delivered over HTTPS) area and we use jQuery library. Recently I suggested we use Google CDN for jQuery delivery. Some of my ...
17
votes
10answers
1k views

Can gdb make a function pointer point to another location?

I'll explain: Let's say I'm interested in replacing the rand() function used by a certain application. So I attach gdb to this process and make it load my custom shared library (which has a ...
15
votes
16answers
1k views

Website hacking - Why it is always possible to do?

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 ...
14
votes
4answers
3k views

CSS/JavaScript/hacking: Detect :visited styling on a link *without* checking it directly OR do it faster than me

This is for research purposes on http://cssfingerprint.com Consider the following code: <style> div.csshistory a { display: none; color: #00ff00;} div.csshistory a:visited { display: ...
13
votes
2answers
220 views

Unable to understand a format string exploitation code

I came across this code showing format string exploitation while reading this article. #include <stdio.h> int main(void) { char secret[]="hack.se is lame"; char buffer[512]; char target[512]; ...
13
votes
6answers
2k views

Can some hacker steal the cookie from a user and login with that name on a web site?

Reading this question different users get the same cookie value in aspxanonymous and search for a solution, I start thinking, if it is possible for some one to really steal the cookie with some way, ...
12
votes
6answers
3k views

What does this PHP code do? [closed]

I noticed that this code has been added to some web pages on a site. What does it do exactly? <?php global $ob_starting; if(!$ob_starting) { function ob_start_flush($s) { $tc = array(0, 69, ...
11
votes
7answers
370 views

Are secret URLs truly secure?

I never leave backdoors in my system, but our of curiosity I was wondering if I left a secret URL like /x52d23r that allowed to bypass some sort of security, and this was only for my personal ...
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 ...
10
votes
4answers
1k views

Testing for security vulnerabilities in web applications: Best practices?

I'm developing a web application. Like, a proper one, I've used things like Joomla in the past to make awesome stuff but have now finally got my hands dirty with PHP, MySQL and CodeIgniter. When ...
10
votes
8answers
2k views

Good ethical hacking book

What is the best book to start learning ethical hacking ?
10
votes
8answers
10k views

How can I hook Windows functions in C/C++?

If I have a function foo() that windows has implemented in kernel32.dll and it always returns true, can I have my program: "bar.exe" hook/detour that Windows function and make it return false for all ...
10
votes
3answers
380 views

How would I go about implementing this algorithm?

Friday afternoon seems like a good time to ask this question... A while back I was trying to brute force a remote control which sent a 12 bit binary 'key'. The device I made worked, but was very ...
9
votes
5answers
311 views

Does using preparedStatement mean there will not be any SQL Injection?

I have read that to prevent SQL Injection one must use PreparedStatement. Does that mean if i am using perparedStatement then no one can perform SQL Injection in any of my page? Is it foolproof ...
9
votes
3answers
412 views

Override “private” function in JavaScript

I am monkey-patching some of the jQuery's Draggable code*. The goal is to avoid modifying the original source files and patch dynamically one of the internal functions. The function ...
9
votes
2answers
6k views

Hooking DirectX EndScene from an injected DLL

I want to detour EndScene from an arbitrary DirectX 9 application to create a small overlay. As an example, you could take the frame counter overlay of FRAPS, which is shown in games when activated. ...
9
votes
9answers
690 views

Hacking/cracking deontology

Let's say you recently discovered some major vulnerabilities in a couple of web sites that activate mainly in your country and are very powerful in their market. The vulnerabilities I'm talking about ...
9
votes
3answers
2k views

What are some interesting, small Linux kernel projects to help learn the source?

What small projects would you suggest to a novice with the kernel, but someone who has plenty of systems and C experience? The aim is to develop a familiarity with the kernel source code, and a ...
9
votes
15answers
3k views

What are good books about security, hacking, and computer forensics? [closed]

I know this is a broad area, but... I'm looking at Writing Secure Code, Second Edition, but I was wondering what other good books were out there on the subjects of security, hacking, and computer ...
8
votes
3answers
179 views

PHP image upload security approach

I develop a php script to replace a current one, that will have a lot of exposure to various markets/countries. This script between others offers an photo upload functionality . After a lot of ...
8
votes
3answers
499 views

Do any real-world CPUs not use IEEE 754?

I'm optimizing a sorting function for a numerics/statistics library based on the assumption that, after filtering out any NaNs and doing a little bit twiddling, floats can be compared as 32-bit ints ...
7
votes
2answers
157 views

Anomaly detection using Python

I work for a webhost and my job is to find and cleanup hacked accounts. The way I find a good 90% of shells\malware\injections is to look for files that are "out of place." For example ...
7
votes
2answers
235 views

wordpress hacked: what does this script actually do?

I maintain three wordpress blogs, and yesterday-morning, they were all hacked. Inside all my index.php the first line looked as follows: <?php ...
7
votes
4answers
266 views

I was just hacked, but I don't know how or more importantly, why. Very odd code injected

EDIT: Good work all so far. I've just found this being download and ran in my bash history: http://notsoft.ru/glib (safe to view) Thanks all ====================== I've just noticed the source ...
7
votes
4answers
3k views

Need help with this XSS attack [closed]

Did anybody know more information about this attack ? I recently got this script injected in my web sites By the way dont go on this web site since it's the source of the infection ...
7
votes
4answers
318 views

Weird Javascript in Template. Is this a hacking attempt?

I validated my client's website to xHTML Strict 1.0/CSS 2.1 standards last week. Today when I re-checked, I had a validation error caused by a weird and previous unknown script. I found this in the ...
7
votes
6answers
668 views

piece of php code for prevent hacking

I have a php file at my site, and I connect to db, get some records and list them in same file. mysql_connect("localhost", "blabla", "blabla") or die(mysql_error()); mysql_select_db("blabla") or ...
7
votes
6answers
702 views

How can I avoid SQL injection attacks?

Yesterday I was speaking with a developer, and he mentioned something about restricting the insertions on database field, like, strings such as -- (minus minus). At the same type, what I know is that ...
7
votes
4answers
716 views

API authentication design and hackability

Question: Is this API authentication technique easily hackable? apiKey = "123456789" apiCallId = "1256341451" apiSecret = "67d48e91ab2b7471d4be2a8c2e007d13" sig = md5(apiKey + ...
7
votes
3answers
308 views

Blogs and Books on Encryption and Security [closed]

Could any of you experienced programmers / ethical hackers out there recommend some blogs or books on security/encryption? The only blogs I look at now are .Net Security Blog ...
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 ...
7
votes
3answers
477 views

Advice about forming Hackers Club

I'm thinking of forming a Hackers Club at work. My idea is that we would meet monthly and at each meeting one member would present an interesting hack he had created. (The hacks presented wouldn't ...
6
votes
4answers
169 views

Testing against hacking attempts

I want to make sure my site is protected against hacking attempts and I think the best way to test is to try and hack my site myself. What sort of things do hackers do to try and hack my site? E.g. ...
6
votes
3answers
112 views

Is it possible to view the data in the Graphics Card's memory?

I am curious about this. Is it possible to view what textures are currently being loaded into the RAM of the Graphics Card? For instance, if you open 2-3 highly intensive 3D games, is it possible to ...
6
votes
6answers
2k views

Oracle padding exploit - how does it download the web.config?

I know there are already a few questions on SO about the oracle padding exploit but none of them explain how it downloads the web.config. I run a couple of ASP .NET apps which I have already tested ...
6
votes
5answers
2k views

readelf-like tool for Mac OS X?

Is there a tool for reading Mac OS X binaries that would print information about relocation tables and symbol offsets similar to this readelf output? readelf -r app Relocation section '.rel.dyn' at ...

1 2 3 4 5 9