Skip to content

Instantly share code, notes, and snippets.

View SamuelTulach's full-sized avatar

Samuel Tulach SamuelTulach

View GitHub Profile
#include <vector>
#include <string>
#include "shared.h"
#include "AES.h"
#include "encryption.h"
#include "base64.h"
int Encryption::GetExpectedSize()
{
Packet packet = { 0 };
#include <Windows.h>
#include <vector>
#include <string>
#include "shared.h"
#include "AES.h"
#include "encryption.h"
#include "base64.h"
std::string Encryption::Encrypt(Packet packet)
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i5-7400 CPU @ 3.00GHz
CPU Family: 0x6
using RestSharp;
using RestSharp.Authenticators;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace fbspam
@SamuelTulach
SamuelTulach / JunkCode.cs
Created March 16, 2019 12:46
Automatic junk code adder
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace JunkCodeAdder
{
class Program
{
private static string _dir = "/home/samueltulach/Downloads/ObfuscateTest/Fuzion/src";
package com.samueltulach.vibraswitch;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Switch;
import java.io.BufferedReader;
@SamuelTulach
SamuelTulach / Example.js
Created August 31, 2018 15:26
Example usage of BruteforcerJS
var elm = document.getElementById("title");
BruteForce("BruteforcerJS", 10, elm);
@SamuelTulach
SamuelTulach / Program.cs
Created August 24, 2018 17:25
Program na testování rychlosti internetu a jeho stability po delší dobu
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Threading;
namespace SpeedtestLog
{
class MainClass
@SamuelTulach
SamuelTulach / jQueryLoader.js
Created May 2, 2017 12:56
Load jQuery to webpage from script
function addjquery(){
// Add jQuery to page
var jqueryscript = document.createElement('script');
jqueryscript.setAttribute('src','https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js');
document.head.appendChild(jqueryscript);
}