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
using Newtonsoft.Json.Linq; | |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; |
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
using Newtonsoft.Json.Linq; | |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; |
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
byte[] arraylegal = new byte[128]; | |
void StringToByteArray(string value){ | |
int pointer = 0; | |
byte[] byteToSendtoArray; | |
string[] splitSpace = value.Split(' '); |
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
RestartFibonacci: | |
{ | |
List<int> arrayNumbers = new List<int>(); | |
arrayNumbers.Add(0); | |
arrayNumbers.Add(1); | |
string fibonacci = String.Empty; | |
for (int i = 0; i < arrayNumbers.Count; i++) | |
{ | |
fibonacci += arrayNumbers[i] + ","; |
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
[cMemory]: 10 | |
[Memory]: [0] [0] | |
[pointerMemory]: 0 | |
[cMemory]: 0 | |
[Memory]: [10] [0] | |
[pointerMemory]: 0 | |
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
int pos = 0; | |
Console.Write("Insira o valor primario: "); | |
bt.Interpreter(@",.0"); | |
Console.Write("\nInsira o segundo valor: "); | |
bt.Interpreter(@",.0"); | |
try | |
{ | |
pos = int.Parse(bt.Output[0].ToString()); |
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
public void BruteForceII(string password, int ms) | |
{ | |
string listbrute = "null:null"; | |
char[] listA_Z = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' }; | |
l: | |
string bruteForceValue = String.Empty; | |
while (true) | |
{ | |
if (password != bruteForceValue) | |
{ |
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
Public Class Form1 | |
Dim Hack As New CS2DHack.CS2DHack | |
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click | |
Dim speedvalue As String = TextBox1.Text | |
Try | |
WriteDMAInteger(processo, &H69EFAC, New Integer() {&H20C}, speedvalue, 1) | |
Catch ex As Exception | |
MsgBox(ex.Message) | |
End Try | |
End Sub |
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
public static async void GetResponse(string server,string @params) | |
{ | |
httpWebRequest = (HttpWebRequest)WebRequest.Create($"http://{server}/{@params}"); | |
HttpWebResponse httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse(); | |
string method = httpWebResponse.Method; | |
if (String.Compare(method, "GET") == 0) | |
{ | |
Stream receiveStream = httpWebResponse.GetResponseStream(); | |
StreamReader readStream = new StreamReader(receiveStream, Encoding.UTF8); | |
// MessageBox.Show(readStream.ReadToEnd()); |
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
private static void NoFlood(string _) | |
{ | |
string value = String.Empty; | |
int? cCList,cCPointer = null; | |
int m = 0x0; | |
string[] memoryStrings = new string[124]; | |
int counter = 0; | |
char[] CharList = _.ToCharArray(); |