Hashcat – Linux Tutorial English
Here is my tutorial on hashcat, 100% written by konvict. Requirements: hashcat Linux (just because windows is gay im gonna be doing this tutorial as a linux user) A brain (if you just followed that link you dont have one ) -Im sure it will be pr... weiterlesen...
Simple reverse shell in C
/* MUTHAFUKKEN REVERSE SHELL By a32 Do whatever you want with this code. I dont give a shit. Have fun using/modding this. I had fun coding this ;D */ #include <stdio.h> #include <sys/socket.h> #include <netdb.h> #include <st... weiterlesen...
[Python] Password Generator
#!/usr/bin/python3 #Simple Password Generator v.01 #By: Alastor import random chars = "abcdefghijklmnopqrstuvwxyz1234567890" password = "" print("\nSimple Password Generator:") print("\nCharacter list = %s \nEdit code to change it." % chars) len... weiterlesen...
[C#] Sending Mail using GMail
public void sendMail(string username, string password, string recipient, string subject, string body) { System.Net.Mail.MailAddress toAddress = new System.Net.Mail.MailAddress(txtTo.Text); System.Net.Mail.MailAddress fromAddress = new System.Net... weiterlesen...
public string Base64Encode(string data) { return Convert.ToBase64String(Encoding.UTF8.GetBytes(data)); } public string Base64Decode(string data) { try { return Encoding.UTF8.GetString(Convert.FromBase64String(data)); } catch { // you can replace... weiterlesen...
vBulletin auto login
Hacked a site, got a shell up? Two days later they’ve changed the PW and you forgot the shell or some shit? Here is my autologin <?php /*======================================================================*\ || #######################... weiterlesen...
PHP Tutorial By Ac1d English
Hi, Im Ac1d and this is my first PHP tut. I simply wrote it for people to use as there we’re any on the site and there was alot of demand for them. So this is going to be my first of many (hopefully) Lets Get Started… PHP stands for... weiterlesen...
PHP Tutorial by Ac1d #2 English
Welcome To My Second PHP tut. In order to understand this tutorial, you will need either basic knowledge in PHP, or to have read my previos tutorialmon PHP. In this tutorial I will be covering: -= Arrays -= Pre-defined Variables -= IF statements... weiterlesen...
Kommentare