[VB.NET] Fake Api Generator [SOURCE] - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19) +---- Thread: [VB.NET] Fake Api Generator [SOURCE] (/showthread.php?tid=16605) |
[VB.NET] Fake Api Generator [SOURCE] - xCocaine - 03-06-2011 I made a little applicatio in vb.net to generate fake api's. Is really simple, but usefull. You need to import system.text, make 2 textbox and 1 button. (Textbox1.text = Generated Api's) (Textbox2.text = How much api's) (Button1 = Generate Api's) This is the source code : Code: apicoder.Append(vbNewLine + "Declare Unicode Function " & random_key(generator) & " Lib """ & random_key(generator) & ".dll" & """ (ByVal " & random_key(generator) & " As String,ByVal " & random_key(generator) & " As String(),ByVal " & random_key(generator) & " As char) As Byte()") Thanks to pr0t0typ3 for the random key function. Example : Code: Declare Unicode Function plZtlcp Lib "AhhTGiE.dll" (ByVal QfNePTt As String,ByVal igbrpMh As String(),ByVal FMHSVmG As char) As Byte() RE: [VB.NET] Fake Api Generator [SOURCE] - Pyratepig - 03-06-2011 Nice work xCocaine! Glad to see the coding section coming alive once again. RE: [VB.NET] Fake Api Generator [SOURCE] - dime111 - 03-08-2011 thanks xCocaine RE: [VB.NET] Fake Api Generator [SOURCE] - WiFi. - 03-19-2011 Thanks for the share bro. Good work. RE: [VB.NET] Fake Api Generator [SOURCE] - Mammoth - 04-18-2011 Another thing that is very useful from you. |