Support Forums

Full Version: PHP Obsfucator - FUD your PHP Files
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
PHP Obsfucator - FUD your PHP Files

[Image: 96732180.png]
Sorry for GUI, its crap - I know. What can I do?!
Now you probably think I'am crazy (talking with myself :!)



[Image: 43415312.png]
LINK : HERE


[Image: 34003654.png]
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
These tutorials aren't allowed.