Skip to content

Instantly share code, notes, and snippets.

View fipso's full-sized avatar
🍪
onhover=stealCookies

fipso fipso

🍪
onhover=stealCookies
View GitHub Profile
<html>
<head>
<title>Hallo Welt</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/6.6.10/sweetalert2.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/6.6.10/sweetalert2.min.js"></script>
<script>
function halloWelt(){
swal("test 123", "Geht", "info");
static void Main(string[] args)
{
var server = new Socks5Server(IPAddress.Any, 1080);
server.Start();
var client = new Socks5Client("127.0.0.1", 1080, "mx.freenet.de", 993);
client.Connect();
var stream = new NetworkStream(client.Client.Sock);
var ssl = new SslStream(stream);
@fipso
fipso / Program.cs
Created June 7, 2017 16:59
MailKit Socks5 Fail
using System;
using System.Net;
using System.Net.Sockets;
using System.IO;
using MailKit.Net.Imap;
using MailKit;
namespace SocksTest
{
internal class Program

Keybase proof

I hereby claim:

  • I am fipso on github.
  • I am fipso (https://keybase.io/fipso) on keybase.
  • I have a public key ASBd3uX5LbyenPfXA9PKilrQr6qt4LbM2ggj0w259VEMjgo

To claim this, I am signing this object:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Drawing;
namespace BarrierX_Bot
@fipso
fipso / score.js
Created November 19, 2016 12:58
Hacking Telegram Games ( @Gamee Bot )
/**
* Created by fipso on 13.10.16.
*/
var CryptoJS = require("crypto-js");
var CryptoJSAesJson = {
stringify: function (cipherParams) {
var j = {ct: cipherParams.ciphertext.toString(CryptoJS.enc.Base64)};
if (cipherParams.iv) j.iv = cipherParams.iv.toString();