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:
| import ssl | |
| from socks import create_connection | |
| from socks import PROXY_TYPE_SOCKS4 | |
| from socks import PROXY_TYPE_SOCKS5 | |
| from socks import PROXY_TYPE_HTTP | |
| from imaplib import IMAP4 | |
| from imaplib import IMAP4_PORT | |
| from imaplib import IMAP4_SSL_PORT |
| <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); |
| using System; | |
| using System.Net; | |
| using System.Net.Sockets; | |
| using System.IO; | |
| using MailKit.Net.Imap; | |
| using MailKit; | |
| namespace SocksTest | |
| { | |
| internal class Program |
I hereby claim:
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 |
| /** | |
| * 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(); |