Tagged Questions

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 ...
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 ...
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
971 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 ...
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
497 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
3answers
492 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 ...
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 ...
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, ...
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 ...
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 ...
9
votes
5answers
306 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
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
177 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 ...
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
666 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
4answers
710 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
305 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 ...
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
3answers
118 views

Detecting suspicious behaviour in a web application - what to look for?

I would like to ask the proactive (or paranoid;) among us: What are you looking for, and how? I'm thinking mainly about things that can be watched for programaticaly, rather than manually ...
6
votes
5answers
175 views

Can a program assign the memory directly?

Is there any really low level programming language that can get access the memory variable directly? For example, if I have a program have a variable i. Can anyone access the memory to change my ...
6
votes
4answers
2k views

Where to use mysql_real_escape_string to prevent SQL Injection?

I'm in trouble with a group of hackers. they hacked my client's site few times, and my client gets more angry :( my client lost his database (which has hundreds records), and had to enter all :( now ...
5
votes
8answers
2k views

Login code sample which has been hacked via SQL Injection, although mysql_real_escape_string

I use CodeIgniter, and having trouble with hacking :( is it possible to make SQL Injection to the login code below: function process_login() { $username = ...
5
votes
4answers
547 views

Session Hijacking in practice

I have been reading up on session fixing/hijacking recently, and understand the theory. What I don't understand is how this would be exploited in practice. Would you have to tamper with your browser ...
5
votes
3answers
202 views

Defensive programming against malicious attacks

The company that I work for is redeveloping an in-house product for external use. The product will initially be developed in C# using WPF, then ported to Silverlight. One of the focus points is ...
5
votes
10answers
648 views

Good resources on security, hacking etc?

I am interested in learning about how hackers find and exploit vulnerabilities. Specifically about windows hacking and web hacking i.e. I’m NOT interested in linux/unix stuff. Are there any good ...
5
votes
3answers
2k views

Can the “x-requested-with” http header be spoofed?

My research shows that only the Host, Referer, and User-Agent headers can be spoofed. (source http://download2.rapid7.com/r7-0026/ ) Is this a correct assumption to make? The security of a site I am ...
5
votes
6answers
826 views

Hacking your own application

I am a web developer that is very conscious of security and try and make my web applications as secure as possible. How ever I have started writing my own windows applications in C# and when it comes ...
4
votes
6answers
246 views

Site's Been Hacked - What Does This Javascript Code Do?

Just found out that my website has been hacked... I traced the problem to this piece of Javascript code that was inserted in the Suckerfish dropdown menu. I'm gonna replace the menu with a clean ...
4
votes
6answers
134 views

How to manually attempt SQL injections on my website?

I found lots of tools which injects passwords, bucks and various stuff into others websites. However, I'm sure that none will work against all forms on my site. So, I want to manually test my site ...
4
votes
3answers
325 views

Security: Achievement and score API in AS3

Over the years I've become an uber-nerd when it comes to flash game development. Now I'm thinking about looking into using my skills for helping other game-developers out there. I want to develop an ...
4
votes
1answer
482 views

Vulnerabilities in caching of obfuscated key? Android Licensing

I'm caching a user's authentication to whenever the Android Market Licensing ping server returns a GRANT_ACCESS pong. Does anyone see any vulnerabilities with this strategy? I believe it is very ...
4
votes
6answers
381 views

Why is AJAX authentication through HTTP considered to be non secure?

Lets consider next scenario: assume I have a web app, and authentication of users is performed through a modal dialog window (lets say, that when a user clicks login button, ajax request is sent and ...
4
votes
2answers
598 views

What are the risks of cross domain JSONP communication?

In our web application we have run into the situation where we need to do a cross-domain AJAX calls from one domain we fully control to another domain we fully control. I've been surfing around for ...
4
votes
4answers
368 views

PHP - What to store in a session?

I know about all the issues with session fixation and hijacking. My question is really basic: I want to create an authentication system with PHP. For that, after the login, I would just store the user ...
3
votes
4answers
132 views

How to secure project against hacks and attacks? (PHP / MySQL)

I have started in web development not long time ago. I know some stuff now, but I'm really concerned about security issues that may arise. I know simple security solutions like preg_replace , but I'm ...
3
votes
1answer
156 views

How can I disable the 'e' PREG_REPLACE_EVAL modifier in PHP?

I want to know how to disable the eval modifier in PHP's regex system eg. preg_replace('/.*/e', $code, '.'). It's a potential exploit that can be used in place of eval if anyone manages to get dodgy ...
3
votes
1answer
120 views

Codeigniter Security Question after seeing suspicious error messages in log file

My log file has the message The session cookie data did not match what was expected. This could be a possible hacking attempt about 5 times a second for around 10 minutes. Clearly some sort of hack ...
3
votes
6answers
84 views

Secure a website [closed]

I've to make an introduction to what kind of attack they should prevent on their custom website. I already made some example about XSS, CSRF, SQL Injection, is there something else I should include? ...
3
votes
2answers
247 views

Security Testing a Website

I am currently working on a school assignment which requires us to perform security testing on a website created by one of our peers. The website is created using ASP.Net 3.5/4 and an MS-SQL database. ...
3
votes
4answers
384 views

Is the ASP.NET cryptographic vulnerability work around a BIG LIE?

This question is somewhat of a follow up to How serious is this new ASP.NET security vulnerability and how can I workaround it? So if my question seems to be broken read over this question and its ...
3
votes
4answers
108 views

Crazy question about website landing

Is it possible for crook to redirect website site/landing to your domain to elsewhere? Say, a visitor's intended website is, knowledgenotebook.com, but the crook redirected the user to google.com or ...
3
votes
1answer
88 views

Attacking synchronized clock protocol (Kerberos)

If we assume that an attacker is able to control the clock of Alice, Bob, and the KDC (key distribution center) how could the attacker attack the Kerberos protocol?
3
votes
5answers
1k views

Preventing Url manipulation attacks with MVC?

Any good strategies, code snippets etc for preventing URL manipulation? For example I have this url; http://localhost/profile/edit/5 the id could easily be changed to anything and thus people could ...
2
votes
3answers
58 views

Ajax, PHP and Security?

My question is that suppose, in my web app, I use ajax to call upon methods on the server side, isn't it creating a security hole in the app? Like, say I have an option for the user to deactivate the ...
2
votes
2answers
107 views

Hackers constantly pull my login.aspx

I have a website with a protected content and I am recently started getting a lot of email alerts about unsuccessful logins. It gets really annoying, about one attempt in a minute or two average. ...
2
votes
5answers
110 views

How secure is the “same origin policy”?

I am aware that to read the contents of an iframe, the domains, protocols, and ports must match. However is this enough to guarantee that an "unknown malicious website" will not be able to get past ...

1 2 3