An exploit is a piece of software, a chunk of data, or sequence of commands that takes advantage of a bug, glitch, or vulnerability in order to cause unintended or unanticipated behavior to occur. This frequently includes such things as gaining control of a computer system, allowing privilege ...
0
votes
0answers
39 views
Return to function, difference between strcpy() and memcpy()
The paxtest program includes some interesting tests, among many others it apparently tests if strcpy and memcpy can overwrite a return pointer on the stack:
(from rettofunc1.c)
void doit( void )
{
...
0
votes
1answer
34 views
WinDbg range error while searching jump
I am trying to search jump in a programs' dll but when I do that I am taking range error. What's the problem with that?
My WinDbg output is below:
0:000> g
ModLoad: 76390000 763ad000 ...
0
votes
0answers
41 views
Troubles overriding BP and return adress while exploiting program through buffer overflow
I'm following this exploit tutorial http://www.youtube.com/playlist?list=PL96AB65DFCE02EE3E, which teaches you to exploit applications by injecting assembly code in user input and overriding return ...
0
votes
1answer
22 views
Return To Libc with Null byte in the addr
I am trying to perform a return to libc format string attack, but the address I want to write to ( 0x0804a000) has a null byte in it!! I have to read in my format string to snprintf so the null byte ...
0
votes
1answer
25 views
open database connection attacks
Just learning php and aiming to write quality code.
I read everywhere that you should close all database connections to reduce vulnerability of your system. It's okay, but why and when?
Connections ...
-2
votes
0answers
39 views
exploitable weakness in Ubuntu server [closed]
I have to do a project at uni where I need to harden the ubuntu server. Then I need to leave out one weakness in the system that will allow attacker to remotely access command window/ console. This ...
0
votes
0answers
43 views
Simple heap overflow exploit with toy example on old glibc
Consider this example of a heap buffer overflow vulnerable program in Linux, taken directly from the "Buffer Overflow Attacks" (p. 248) book:
#include <stdlib.h>
#include <string.h>
int ...
-2
votes
2answers
96 views
PHP injection. Explanation needed [closed]
I am trying to learn how to hack, and I was given a task based around php. I know that this code is the vulnerable part, but I don't know how to actually exploit it.
<form action="#" ...
0
votes
0answers
36 views
Buffer overflow with gets()
I'm trying to overflow buffer with my shellcode and I have a problems with gets().
If I overflow buffer with shellcode using strcpy() function - it's OK and I got a /bin/bash. But if I do the same ...
0
votes
1answer
79 views
Buffer overflow exploit : segfault on function ret to stack code
I'm trying to exploit a buffer overflow in a test program to execute arbitrary code. I'm on NetBSD 6 i386. Here is the C code:
int checkPassword(char *password)
{
char ...
4
votes
2answers
97 views
Accessing 2nd element of an array in a format string vulnerability attack
I'm working on a format-string vulnerability lab, where we're given the following code:
#define SECRET1 0x44
#define SECRET2 0x55
int main(int argc, char *argv[])
{
char user_input[100];
int ...
0
votes
1answer
109 views
How to monitor which files are writting code to others?
It appears there is a new exploit/hack going around where a Wordpress plugin is writing a .js file before every closing </head> tags in every Wordpress installation's .php files on my server. ...
4
votes
1answer
107 views
What is the possible ^null$ exploit reported by LogWatch?
LogWatch is a nice tool that provides daily reports on linux log files. It includes several information summaries, like traffic, users who logged in, who used sudo, relevant kernel messages, IPs that ...
0
votes
1answer
46 views
Apache server security and cPanel scanning?
Is there a way (or a cPanel add-on) that will continually scan sites for exploits/malware/vulnerabilities from WHM or cPanel?
3
votes
2answers
82 views
Rails app exploited, how to find which exploit?
I've received a mail from somebody who pretends to have hacked my server, giving a few info about the server, and asking me to pay if I don't want the data to be posted online.
All the apps on the ...
3
votes
1answer
112 views
Buffer overflow on remote server
I'm a computer security student and I'm doing a project about remote buffer overflows. I developed a vulnerable server in C, with an unsafe use of strncpy function which actually copies 1024 bytes on ...
0
votes
0answers
110 views
How to inject arbitrary memory address in x86-64?
Hello I'm trying to learn some basic memory exploits from the book "Hacking: the Art of Exploitation" and I'm having trouble due to my x86-64 system.
For this part of the book I was learning format ...
0
votes
1answer
82 views
Buffer Overflow exploit , overwriting function parameters including return address
Assume we have a function
foo(char *name,int id)
{
printf ("%s%d",name,id);
}
Using buffer overflow, we replace the return address on the stack with foo function address. I was able to ...
1
vote
0answers
54 views
In Linux, does the location of an executable affect how the setuid bit is interpreted?
In a Linux system, does the permissions of the directory in which a setuid program resides affect how the kernel launches the process? The reason I ask is that when I compiled an identical setuid ...
0
votes
1answer
112 views
Can't understand the buffer overflow example in “The Art of Exploitation”
My problem is very similar but not the same with the this one.
I run the same example of exploit_notesearch.c in the book: Hacking, the Art of Exploitation on my 64-bit OS, Archlinux and it doesn't ...
0
votes
1answer
54 views
How can I find where main()'s return address is sitting in the stack?
I need to do a remote a buffer overflow exploit for a class. I understand MOST of it. It involves overwriting main's return address so I can execute my own code.
But we never covered how to find the ...
-2
votes
1answer
46 views
XSS - No escaping, but not rendering [closed]
I have a site where a page http://www.example.com/errorpage.html?errmsg="Some error string"
This error string is then rendered into the webpage in a <p class="error">Some error string</p> ...
0
votes
0answers
25 views
server sent unwanted email , I was not checking mail input
My server was sending out unwanted email. So I was searching for the cause.
I found that I was not checking php mail() function input.
Now I am checking input with filter_var($mail, ...
-4
votes
1answer
379 views
C or Python for Exploit Writing? [closed]
Is it better to focus my efforts on the C or Python programming languages as far as writing exploits go. Here's my current understanding.
C Benefits
Quicker run time
Lower level
When used with ASM ...
5
votes
1answer
488 views
Null byte injection in an upload form
I'm trying to reproduce the Null Byte Injection attack on an upload form. I have this code:
<?php
if(substr($_FILES['file']['name'], -3) != "php") {
...
0
votes
3answers
55 views
Exploit on HTTPS, how change https form value
I'm e-commerce developer and have a problem, at certain part of the purchase my code generate a submit form with the purchase info. And send to payment gateway.
This form is generated on PHP and ...
-5
votes
1answer
92 views
Is this preg_replace exploitable? [closed]
I'm looking to exploit this preg_replace call:
$str = preg_replace($pattern, '__', $str);
I can control both $str and $pattern variables, but I'm not sure this is enough to inject
arbitrary PHP ...
2
votes
1answer
173 views
Format string attack in printf
#include <stdio.h>
int main()
{
char s[200]
int a=123;
int b=&a;
scanf("%50s",s);
printf(s);
if (a==31337)
func();
}
The aim is to execute a format string ...
-2
votes
1answer
290 views
Is Google Chrome Vurnerable to Zero Day Java Exploit like IE?
I've seen IE 6 to 10 can be easaily exploited using the Zero Day Java Exploit (CVE-2013-0422)
And If the IE have been exploited.. We can access the hardisk file even cookies or password..
That's very ...
0
votes
0answers
78 views
Disable scripting in server-hosted System.Windows.Forms.WebBrowser control
Advanced print solutions for web applications seem to require server-side rendering to PDF.
The IE-based System.Windows.Forms.WebBrowser can be used for part of the job by giving it HTML and getting ...
0
votes
3answers
93 views
Multiple greviances with Java. as a beginner Where to turn to? [closed]
As I pick myself up again from another brain surgery and another upgrade to a new Operating system, I would like to know and ask if the multiple security issues currently with Java make it a safe ...
1
vote
1answer
37 views
Debugging server [proftpd]
I'm trying to debug proftpd in order to understand better this exploit http://www.phrack.org/issues.html?issue=67&id=7. The vulnerable section is in mod_sql.c, I have tried to breakpoint the ...
1
vote
1answer
151 views
Incompatible Pointer Type Error in Exploit C Code
I'm trying to compile the following exploit code for a learning exercise, and have done some research on pointers in C, but my numerous attempts to fix the code have had no effect on the compiler ...
0
votes
2answers
94 views
Isnt Segmentation fault the same as the smashing the stack?
As a consequence of an programming error we get segmentation faults . But as a necessary tool we try the same thing but the kernel detects it as smashing the stack . How exactly does the kernel see ...
3
votes
1answer
69 views
Trapping Bad Behavior with rewrite -phpmyadmin anywhere in URL
I'm hoping someone can help as I'm a bit of a noob when it comes to apache mod rewrite, and getting this one wrong can screw things up pretty bad.
While going though my security logs I noticed that ...
7
votes
4answers
260 views
Is it possible to exploit a javascript math function that allows PEMDAS?
I have a form field on my page, which if the user types a simple math equation into it, I would like to replace the value with the solution. So if the user types 1 + 2 into the field and hits enter I ...
5
votes
1answer
247 views
Return into libc - Illegal instruction
I am messing around with buffer overflows, particularly the return into libc kind.
I have the following vulnerable code:
#include<stdio.h>
#include<string.h>
main( int argc, char ...
2
votes
1answer
113 views
Disable backtrace
I'm training on heap overflow exploit on my backtrack 5 laptop. However, backtrack seems to have a protection against these attacks. Here is what I get when i try to corrupt meta data of malloc's ...
0
votes
0answers
172 views
x86-64 null bytes in addresses
It seems that most addresses on x86-64 have a form that makes it include null bytes when stored in memory as a pointer. E.g.
0x7fffffffdde8: 0xf7a54e5d 0x00007fff
and,
0x7fffffffddb8: ...
2
votes
0answers
33 views
two references in STDIN with pipe
I'm trying to exploit a .c, and it asks for 2 inputs. I have to use hexadecimal entries to change the return adress to whatever I want. How can I pipe an input for two entries at the same time? Is ...
0
votes
1answer
48 views
Where can I download JRE 7u5 plugin for any browser?
I was looking for a good exploit to use as my final project for security class so I though for JRE 7u5 bug to exploit using Metasploit.
Where I can download that version of plugin for ...
0
votes
1answer
162 views
SQL Injection - DB - test [closed]
I was testing my website with a tool called "Havij" and I just found out that my site is vulnerable.
I can get my DB name and every table, column and even data throught that program.
My question is:
...
0
votes
1answer
93 views
Javascript hole in Firefox 16.0 [closed]
Can someone explain me how this javascript hole works ??? :D
It's a hole that will gain data (the username) from a twitter window that will be opened...
alert('Hello ...
1
vote
1answer
92 views
The way stack handle functions arguments
I am studying the Format String section of The Shellcoder's Handbook.
As the book advices i use a code like this to do my tests:
[formatstring.c]
#include <stdio.h>
#include <stdlib.h>
...
2
votes
1answer
201 views
iOS jailbreak exploits, The effects of exploits and how to manage them
The Syringe project let's you "inject" exploits to the iOS, but what does the exploits actually do ?
When i look inside the limera1n exploit, i don't get what it actually does, and i can't seem to ...
3
votes
0answers
1k views
Man in the middle attack with scapy
I'm trying to do a man in the middle attack with scapy on a test network. My setup is like this:
Now that you get the idea, here's the code:
from scapy.all import *
import multiprocessing
import ...
1
vote
1answer
244 views
Defending Exploits
I've setup a sandbox and trying to run exploits so I can better understand how to better defend against them. When I run the following, the process is failing as it should and for the right reason. ...
1
vote
1answer
86 views
Buffer overflow exploit not working for kernel module [closed]
I have done buffer overflow exploits for user level processes in the past. However this does not seem to work good if I try to overflow the buffer of a vulnerable kernel module. Here's what I do:
...
0
votes
0answers
84 views
PHP5-FPM - Log postdata to catch 0day exploit
It appears that a malicious user has found an exploit in a piece of PHP software I run but didn't write. The exploit isn't critical, he can't upload files or execute arbitrary code, but it's still a ...
0
votes
1answer
207 views
What is vulnerable about this C code? (Integer…)
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#define MAX 3
#define ARG "cat .passwd"
integer main( integer argc, char ** argv )
{
char * ...
