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
import sys | |
import time | |
import socket | |
server = "irc.hackint.org" #settings | |
channel = "#jimileibniz" | |
botnick = "groovebot" | |
#establish connection | |
irc = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
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
import http.server | |
import http.cookiejar | |
import io | |
import socket | |
from http import HTTPStatus | |
import ssl | |
import os | |
import zlib | |
server_address = ('0.0.0.0', 4443) |
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
const fetch = require('node-fetch'); | |
const createHiddenField = (obj, fieldName, value) => { | |
Object.defineProperty(obj, fieldName, { | |
enumerable: false, | |
writable: true, | |
value: value, | |
}); | |
}; |