Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
PHP Obsfucator - FUD your PHP Files
#1
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
#2
These tutorials aren't allowed.


Possibly Related Threads…
Thread Author Replies Views Last Post
  Can anyone help me fud a crypter mikeandike 1 846 06-08-2012, 03:55 PM
Last Post: AceInfinity
  Need Help with Registering VB Files G1™ 2 830 12-12-2010, 06:24 PM
Last Post: Flamingo
  vb.net associated files? thanasis2028 2 1,063 12-11-2009, 12:49 AM
Last Post: thanasis2028

Forum Jump:


Users browsing this thread: 2 Guest(s)