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 names = [ | |
"cumhuriyeti", | |
"cehennemi", | |
"selalesi", | |
"evi", | |
"magazasi", | |
"shop", | |
"kasa", | |
"dunyasi", | |
"cenneti", |
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
<html> | |
<head> | |
<title> | |
HAIL INFERNALS | |
</title> | |
<style type="text/css"> | |
body { | |
display: flex; | |
justify-content: center; | |
align-items: center; |
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
package main | |
import ( | |
"bufio" | |
"bytes" | |
"fmt" | |
"image/jpeg" | |
"image/png" | |
"log" | |
"os" |
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
package main | |
import ( | |
"encoding/xml" | |
"fmt" | |
pkg "xml_unparsed/xmlmap" | |
//pkg "xml_unparsed/xmlslice" | |
) |
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
package udp_server | |
import ( | |
"errors" | |
"log" | |
"net" | |
) | |
type UDPServer struct { | |
Addr string |
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
package main | |
import ( | |
"bytes" | |
"crypto/tls" | |
"encoding/xml" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"strings" |
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
enum CreditCardType { | |
VISA = "visa", | |
MASTERCARD = "mastercard", | |
DISCOVER = "discover", | |
AMERICANEXPRESS = "american-express", | |
DINERSCLUB = "diners-club", | |
JCB = "jcb", | |
TROY = "troy" | |
} |
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 dgram = require("dgram"); | |
const EventEmitter = require("events"); | |
let server; | |
let status = false; | |
class SyslogServer extends EventEmitter { | |
constructor() { | |
super(); | |
} |
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 Bluebird = require('bluebird'); | |
import {UnirestError} from './UnirestError'; | |
/** | |
* A tool for converting a unirest object into a promise | |
* @param unirest The unirest instance | |
* @returns {Bluebird<any>} | |
*/ | |
export function unirestAsPromise(unirest: any): Bluebird<any> { | |
return new Bluebird( |
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 crypto from "crypto"; | |
class CSRF { | |
private store: string[] = []; | |
constructor() {} | |
createToken() { | |
const token = crypto.randomBytes(64).toString("hex"); | |
this.store.push(token); |