06-04-2011, 01:13 PM
PHP Obsfucator - FUD your PHP Files
Sorry for GUI, its crap - I know. What can I do?!
Now you probably think I'am crazy (talking with myself :!)
LINK : HERE
LINK : HERE
Sorry for GUI, its crap - I know. What can I do?!
Now you probably think I'am crazy (talking with myself :!)
LINK : HERE
LINK : HERE
Requested by darkcoder1337, Post edit by BlueMelon:
Source:
Code:
?Imports System.Text
Imports System.Security.Cryptography
Public Class Form1
Public Function GenerateString(ByVal times)
Dim s As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
Dim r As New Random
Dim sb As New StringBuilder
For i As Integer = 1 To times
Dim idx As Integer = r.Next(0, 35)
sb.Append(s.Substring(idx, 1))
Next
Return sb.ToString
End Function
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim info = TextBox1.Text
info = Replace(info, "<?php", String.Empty)
info = Replace(info, "?>", String.Empty)
Dim data = Convert.ToBase64String(New System.Text.ASCIIEncoding().GetBytes(info))
TextBox2.Text = "<?php eval(base64_decode(""" & data & """)); ?>"
End Sub
End Class