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:
| /** | |
| * 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(); |
| 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 |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| using System.Net; | |
| using System.Net.Sockets; | |
| using System.IO; | |
| using MailKit.Net.Imap; | |
| using MailKit; | |
| namespace SocksTest | |
| { | |
| internal class Program |
| 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); |
| <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"); |
| 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 |
| {"version":1,"notes":"","documentation":"\"This file is a QMK Configurator export. You can import this at <https://config.qmk.fm>. It can also be used directly with QMK's source code.\n\nTo setup your QMK environment check out the tutorial: <https://docs.qmk.fm/#/newbs>\n\nYou can convert this file to a keymap.c using this command: `qmk json2c {keymap}`\n\nYou can compile this keymap using this command: `qmk compile {keymap}`\"\n","keyboard":"kbdfans/kbd75/rev1","keymap":"kbdfans_kbd75_rev1_layout_mine","layout":"LAYOUT","layers":[["KC_ESC","KC_F1","KC_F2","KC_F3","KC_F4","KC_F5","KC_F6","KC_F7","KC_F8","KC_F9","KC_F10","KC_F11","KC_F12","KC_PSCR","KC_INS","KC_DEL","KC_GRV","KC_1","KC_2","KC_3","KC_4","KC_5","KC_6","KC_7","KC_8","KC_9","KC_0","KC_MINS","KC_EQL","KC_DEL","KC_BSPC","KC_HOME","KC_TAB","KC_Q","KC_W","KC_E","KC_R","KC_T","KC_Y","KC_U","KC_I","KC_O","KC_P","KC_LBRC","KC_RBRC","KC_BSLS","KC_PGUP","KC_CAPS","KC_A","KC_S","KC_D","KC_F","KC_G","KC_H","KC_J","KC_K","KC_L","KC_SCLN","KC_QUOT","KC_ENT","K |
| import Foundation | |
| import FoundationNetworking | |
| var countries = [Country]() | |
| // MARK: - Summary | |
| struct Summary: Codable { | |
| let global: Global | |
| let countries: [Country] | |
| let date: String |
| // ==UserScript== | |
| // @name SteamCommunityMarket Hacks | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://steamcommunity.com/*/inventory* | |
| // @icon https://www.google.com/s2/favicons?domain=steamcommunity.com | |
| // @grant none | |
| // ==/UserScript== |