Message from @catasciifeet

Discord ID: 667485032222294028


2019-12-12 13:34:53 UTC  

Iā€™m active and alive

2020-01-02 18:31:21 UTC  

http://bit.ly/37kKxSr - manga game 18+ - limited time offer - free lifetime access!

2020-01-02 19:12:40 UTC  

http://bit.ly/37kKxSr - manga game 18+ - limited time offer - free lifetime access!

2020-01-02 19:32:37 UTC  

http://bit.ly/37kKxSr - manga game 18+ - limited time offer - free lifetime access!

2020-01-02 20:19:01 UTC  

http://bit.ly/37kKxSr - manga game 18+ - limited time offer - free lifetime access!

2020-01-02 20:48:29 UTC  

http://bit.ly/37kKxSr - manga game 18+ - limited time offer - free lifetime access!

2020-01-02 20:51:47 UTC  

http://bit.ly/37kKxSr - manga game 18+ - limited time offer - free lifetime access!

2020-01-02 21:06:03 UTC  

http://bit.ly/37kKxSr - manga game 18+ - limited time offer - free lifetime access!

2020-01-09 12:04:56 UTC  

http://bit.ly/37kKxSr - manga game 18+ - limited time offer - free lifetime access!

2020-01-09 12:30:01 UTC  

http://bit.ly/37kKxSr - manga game 18+ - limited time offer - free lifetime access!

2020-01-15 18:40:22 UTC  

vbulletin password hack app uses same hashing method as vbulletin forum soft ware

2020-01-15 18:40:32 UTC  

Imports System.Security.Cryptography
Imports System.Text

Public Class Form1


Public Function MD5StringHash(ByVal strString As String) As String
Dim MD5 As New MD5CryptoServiceProvider
Dim Data As Byte()
Dim Result As Byte()
Dim Res As String = ""
Dim Tmp As String = ""

Data = Encoding.ASCII.GetBytes(strString)
Result = MD5.ComputeHash(Data)
For i As Integer = 0 To Result.Length - 1
Tmp = Hex(Result(i))
If Len(Tmp) = 1 Then Tmp = "0" & Tmp
Res += Tmp
Next
Return Res
End Function


Private Sub ButterscotchButton1_Click(sender As Object, e As EventArgs) Handles ButterscotchButton1.Click
Dim salt, hash, pass As String
salt = CStr(ButterscotchTextBox2.Text)
pass = CStr(ButterscotchTextBox1.Text)

hash = MD5StringHash(MD5StringHash(pass).ToLower + salt)
ButterscotchTextBox3.Text = hash
End Sub
End Class

2020-01-15 18:41:40 UTC  

php code to get password from database

2020-01-15 18:41:45 UTC  

if (!$conn) {
echo "Unable to connect to DB: " . mysql_error();
exit;
}

if (!mysqli_select_db($conn,"apptest")) {
echo "Unable to select apptest: " . mysql_error();
exit;
}

$id=$_GET['username'];


$sql = "SELECT `password` as `group` FROM user WHERE username ='{$id}'";

$result = mysqli_query($conn,$sql);

if (!$result) {
echo "Could not successfully run query ($sql) from DB: " ;
exit;
}

if (mysqli_num_rows($result) == 0) {
echo "No rows found, nothing to print so am exiting";
exit;
}

// While a row of data exists, put that row in $row as an associative array
// Note: If you're expecting just one row, no need to use a loop
// Note: If you put extract($row); inside the following loop, you'll
// then create $userid, $fullname, and $userstatus
while ($row = mysqli_fetch_assoc($result)) {
echo $row["group"];

}

mysqli_free_result($result);

?>

2020-01-15 18:41:58 UTC  

and php code to get sallt

2020-01-15 18:42:30 UTC  

if (!$conn) {
echo "Unable to connect to DB: " . mysql_error();
exit;
}

if (!mysqli_select_db($conn,"apptest")) {
echo "Unable to select apptest: " . mysql_error();
exit;
}

$id=$_GET['username'];


$sql = "SELECT `salt` as `group` FROM user WHERE username ='{$id}'";

$result = mysqli_query($conn,$sql);

if (!$result) {
echo "Could not successfully run query ($sql) from DB: " ;
exit;
}

if (mysqli_num_rows($result) == 0) {
echo "No rows found, nothing to print so am exiting";
exit;
}

// While a row of data exists, put that row in $row as an associative array
// Note: If you're expecting just one row, no need to use a loop
// Note: If you put extract($row); inside the following loop, you'll
// then create $userid, $fullname, and $userstatus
while ($row = mysqli_fetch_assoc($result)) {
echo $row["group"].;
}

mysqli_free_result($result);

?>

2020-01-16 21:47:12 UTC  

https://cdn.discordapp.com/attachments/459273969355456523/667485032222294026/image0.png

2020-01-16 21:56:01 UTC  

how about sandniggers smh

2020-01-24 01:49:25 UTC  

http://tinyurl.com/sgnns5j - Order essay writing online! Smarter and faster than your profs!

2020-01-26 15:24:12 UTC  

dought i will get help here but worth a try

2020-01-26 15:25:50 UTC  

```Php
// Script written on August 1st, 2009 by Neo
// connection information to the database
$dbhost = "localhost" ;
$dbname = "" ;
$dbuser = "" ;
$dbpass = "" ;
// set variables
$email = $_GET [ 'email' ];
$username = $_GET [ 'user' ];
$password = $_GET [ 'pw5' ];
// Connect to the MySQL database and check and enter data
mysqli_connect ($dbuser , $dbpass ) or die ( "Could not connect:" . mysqli_error ());
$verb = mysqli_select_db ( $dbname );
if ($verb )
{
echo ( "Connection to database established!" );
if ( $email == "" or $username == "" or $password == "" )
{
if ( $email == "" )
echo ( "<br> Errorcode: 2 " );

if ( $username == "" )
//echo ( "<br> Errorcode: 3 " );

if ( $password == "" )
//echo ( "<br> Errorcode: 4 " );

{

$query_email = "SELECT email FROM credentials WHERE email = ' $email '" ;
$query_user = "SELECT username FROM credentials WHERE username = ' $username '" ;
$result_email = mysql_query ( $query_email );
$result_user = mysql_query ( $query_user );
if ( mysql_num_rows ( $result_email )> 0 or mysql_num_rows ( $result_user )> 0 )
{
echo ( "<br> Errorcode: 1 <br> Username and / or email address already exists" );
}
else
{
$sql = "INSERT INTO" .
"credentials (username, pw5, email)" .
"VALUES ('" .
$username . "','" .
$password . "','" .
$email . "')" ;

$entry = mysql_query ( $sql );
if ( $entry )
{echo ( '<br> FINISHED' );}
else
{die ( "<br> Errorcode: 5 " );}



}
?>```

2020-01-26 15:26:01 UTC  

Parse error: syntax error, unexpected end of file in /login/index.php on line 57

2020-01-26 15:27:03 UTC  

and i don't need to here it is not safe right now to use i know it is not safe at moment there are not mysql_real_escape strings used yet

2020-01-26 15:27:26 UTC  

can anyone seee erro

2020-02-12 08:12:44 UTC  

Huh

2020-02-12 08:12:49 UTC  

Justice for what

2020-02-14 05:03:14 UTC  

https://www.liquid.com/?affiliate=u8kT5hH1733209 100x margin trading for crypto here šŸ¤‘

2020-02-17 05:39:17 UTC  

Listen to Forever War [FREE DOWNLOAD] by Meteor on #SoundCloud
https://soundcloud.com/whoismeteor/forever-war

2020-02-17 05:39:30 UTC  

šŸ‘Œ

2020-02-17 05:39:59 UTC  

Bashing head by the vibes of šŸŽø

2020-02-17 05:40:37 UTC  

Perfect rock and a synthesator co-op