Lucene search
+L

299 matches found

myhack58
myhack58
added 2017/03/19 12:00 a.m.56 views

Analysis of Kerberos constrained delegation SPN security vulnerabilities-vulnerability warning-the black bar safety net

In the past few years, more and more security researchers began to study Kerberos security, eventually found in support of the authentication Protocol of the network environment a lot of interesting attacks. In this post, I will describe my in the Windows Kerberos constrained delegation feature...

7AI score
SaveExploits0
myhack58
myhack58
added 2017/03/17 12:00 a.m.40 views

Analysis of Kerberos constrained delegation SPN security vulnerabilities-vulnerability warning-the black bar safety net

In the past few years, more and more security researchers began to study Kerberos security, eventually found in support of the authentication Protocol of the network environment a lot of interesting attacks. In this post, I will describe my in the Windows Kerberos constrained delegation feature...

0.2AI score
SaveExploits0
exploitpack
exploitpack
added 2016/02/26 12:00 a.m.38 views

Microsoft Windows - NetAPI32.dll Code Execution (Python) (MS08-067)

Microsoft Windows - NetAPI32.dll Code Execution Python MS08-067 import struct import time import sys from threading import Thread Thread is imported incase you would like to modify try: from impacket import smb from impacket import uuid from impacket import dcerpc from impacket.dcerpc.v5 import...

7.8AI score
SaveExploits0
Exploit DB
Exploit DB
added 2016/02/26 12:00 a.m.56 views

Microsoft Windows - 'NetAPI32.dll' Code Execution (Python) (MS08-067)

import struct import time import sys from threading import Thread Thread is imported incase you would like to modify try: from impacket import smb from impacket import uuid from impacket import dcerpc from impacket.dcerpc.v5 import transport except ImportError, : print 'Install the following...

10CVSS8.2AI score0.98751EPSS
SaveExploits17
zdt
zdt
added 2016/02/26 12:00 a.m.478 views

Microsoft Windows - NetAPI32.dll Code Execution (Python) (MS08-067) Exploit

Exploit for windows platform in category remote exploits EDB-Note: Source https://raw.githubusercontent.com/ohnozzy/Exploit/master/MS08067.py import struct import time import sys from threading import Thread Thread is imported incase you would like to modify try: from impacket import smb from...

10CVSS9.2AI score0.98751EPSS
SaveExploits17
seebug.org
seebug.org
added 2015/11/13 12:00 a.m.570 views

Samba NetLogon未初始化指针漏洞(CVE-2015-0240)

No description provided by source. !/usr/bin/env python coding: utf-8 import sys import time from struct import pack,unpack import argparse import impacket from impacket.dcerpc.v5 import transport, nrpc from impacket.dcerpc.v5.ndr import NDRCALL from impacket.dcerpc.v5.dtypes import WSTR class...

10CVSS8.4AI score0.87636EPSS
SaveExploits7
Kitploit
Kitploit
added 2015/09/22 9:09 p.m.66 views

CrackMapExec - A swiss army knife for pentesting Windows/Active Directory environments

CrackMapExec is your one-stop-shop for pentesting Windows/Active Directory environments! From enumerating logged on users and spidering SMB shares to executing psexec style attacks and auto-injecting Mimikatz into memory using Powershell! The biggest improvements over the above tools are: Pure...

8.4AI score
SaveExploits0References1
Exploit DB
Exploit DB
added 2015/04/13 12:00 a.m.364 views

Samba < 3.6.2 (x86) - Denial of Service (PoC)

!/usr/bin/python """ Exploit for Samba vulnerabilty CVE-2015-0240 by sleepya The exploit only targets vulnerable x86 smbd 3.6.24 which 'creds' is controlled by ReferentID field of PrimaryName ServerName. That means 'talloczero' in libtalloc does not write a value on 'creds' address. Reference: -...

10CVSS7.7AI score0.87636EPSS
SaveExploits7
seebug.org
seebug.org
added 2014/07/01 12:00 a.m.26 views

OpenBSD - ICMPv6 Fragment Remote Execution Exploit PoC

No description provided by source. The PoC executes the shellcode int 3 and returns. It overwrites the extfree function pointer on the mbuf and forces a mfreem on the overflowed packet. The Impacket library is used to craft and send packets http://oss.coresecurity.com/projects/impacket.html or...

7.1AI score
SaveExploits0
seebug.org
seebug.org
added 2014/07/01 12:00 a.m.30 views

3Com TFTP Service <= 2.0.1 (Long Transporting Mode) Overflow PoC

No description provided by source. !/usr/bin/python Buffer Overflow Long transporting mode Vulnerability Exploit This is just a DoS exploiting code Tested on Windows xp SP2 Requires python and impacket Coded by Liu Qixu Of NCNIPC SUMMARY: 3CTftpSvc TFTP Server is a Freeware TFTP server for Window...

7.1AI score
SaveExploits0
seebug.org
seebug.org
added 2014/07/01 12:00 a.m.27 views

MS Windows Server Service - Code Execution Exploit (MS08-067)

No description provided by source. !/usr/bin/env python Ms08067 exploit by Oopohh 这个exploit的payload我只写了windows xp sp2版本的,其他像是2000 ,2003 ,xp sp3 的版本只能触发程序崩溃.另外这个远程exploit可以执行关机命令. 需要安装python库impacket from impacket.dcerpc import transport,dcerpc from impacket import uuid shellcode = '' shellcode +=...

7.1AI score
SaveExploits0
Kitploit
Kitploit
added 2013/11/09 1:07 a.m.55 views

Python tools for Pentesters

If you are involved in vulnerability research, reverse engineering or penetration testing, I suggest to try out the Python programming language. It has a rich set of useful libraries and programs. This page lists some of them. Most of the listed tools are written in Python, others are just Python...

7.5AI score
SaveExploits0References9
Kitploit
Kitploit
added 2013/05/29 12:11 a.m.29 views

[SET v5.1] The Social-Engineer Toolkit codename “Name of the Doctor”

The Social-Engineer Toolkit SET version 5.1 codename “ Name of the Doctor ” has been released. This version adds a complete rewrite of the MSSQL Bruter as well as a new attack vector utilizing the PSExec functionality within Metasploit. The MSSQL Bruter now incorporates UDP port 1434 quick...

8.6AI score
SaveExploits0
seebug.org
seebug.org
added 2012/10/15 12:00 a.m.68 views

Windows ms08-067 缓冲区溢出漏洞

No description provided by source. !/usr/bin/env python coding=utf-8 import struct import sys import socket from threading import Thread Thread is imported incase you would like to modify the src to run against multiple targets from urlparse import urlparse try: from impacket import smb from...

10CVSS9.2AI score0.98751EPSS
SaveExploits17
myhack58
myhack58
added 2008/11/18 12:00 a.m.23 views

MS Windows Server Service Code Execution Exploit (MS08-0 6 7) (2k/2k3)-the exploit-warning-the black bar safety net

!/ usr/bin/env python MS08-0 6 7 Exploit by Debasis Mohanty aka Tr0y/nopsled www.hackingspirits.com www.coffeeandsecurity.com Email: d3basis. m0hanty @ gmail.com import struct import sys from threading import Thread Thread is imported incase you would like to modify the src to run against multipl...

0.1AI score
SaveExploits0
seebug.org
seebug.org
added 2008/11/17 12:00 a.m.20 views

MS Windows Server Service Code Execution Exploit (MS08-067) (2k/2k3)

No description provided by source. !/usr/bin/env python MS08-067 Exploit by Debasis Mohanty aka Tr0y/nopsled www.hackingspirits.com www.coffeeandsecurity.com Email: d3basis.m0hanty @ gmail.com import struct import sys from threading import Thread Thread is imported incase you would like to modify...

7.1AI score
SaveExploits0
Packet Storm
Packet Storm
added 2008/11/16 12:00 a.m.35 views

ms08067-2k2k3.txt

!/usr/bin/env python MS08-067 Exploit by Debasis Mohanty aka Tr0y/nopsled www.hackingspirits.com www.coffeeandsecurity.com Email: d3basis.m0hanty @ gmail.com import struct import sys from threading import Thread Thread is imported incase you would like to modify the src to run against multiple...

7.4AI score
SaveExploits0
exploitpack
exploitpack
added 2008/11/16 12:00 a.m.35 views

Microsoft Windows Server 20002003 - Code Execution (MS08-067)

Microsoft Windows Server 20002003 - Code Execution MS08-067 !/usr/bin/env python MS08-067 Exploit by Debasis Mohanty aka Tr0y/nopsled www.hackingspirits.com www.coffeeandsecurity.com Email: d3basis.m0hanty @ gmail.com E-DB Note: Exploit Update...

7.8AI score
SaveExploits0
zdt
zdt
added 2008/11/16 12:00 a.m.24 views

MS Windows Server Service Code Execution Exploit (MS08-067) (2k/2k3)

Exploit for unknown platform in category remote exploits ==================================================================== MS Windows Server Service Code Execution Exploit MS08-067 2k/2k3 ==================================================================== !/usr/bin/env python MS08-067 Exploit...

7.1AI score
SaveExploits0
Exploit DB
Exploit DB
added 2007/04/15 12:00 a.m.75 views

Microsoft Windows Server 2000 SP4 - DNS RPC Remote Buffer Overflow

!/usr/bin/python Remote exploit for the 0day Windows DNS RPC service vulnerability as described in https://www.securityfocus.com/bid/23470/info. Tested on Windows 2000 SP4. The exploit if successful binds a shell to TCP port 4444 and then connects to it. Cheers to metasploit for the first exploit...

10CVSS7.2AI score0.77664EPSS
SaveExploits19
Rows per page
Query Builder