Calling All Banned Board4All Members!

Board4All is a screwed up place where the headstrong and arrogant admins with no respect for their members ban them at their whim and fancy. Leave them and join me. You will get paid too.

Here’s calling out to all the banned and insulted Board4All members to join me and show the Board4All staff what we are really made of!

If you were banned from Board4All for no reason and/or ever insulted there for no fault of yours then you are requested to make a comment below or contact me in any way with all the content that you already managed to download off from Board4All when you were a member there.

I will post it here and on other sites for the benefit of all. Of course, if you prefer it to be SOLD then I am okay with that option too.

In either case you will get paid for any and all valid content that you previously downloaded from Board4All that you offload to me. Whether you want it to be posted for free or not is entirely your decision.

If you are still a member there and not (yet) banned then know that any time and for absolutely no reason, depending on his mood, Challenger (yes, that useless moronic admin of B4A, the son of Zeus who is the actual owner of the forum) can ban you suddenly without any warning. So if you still have an account there, just keep offloading the content to us for us to post for free for the benefit of all.

You will be paid for your efforts, of course. Members with live accounts (not banned yet) will be paid a lot more than the banned ones who came licking their wounds would be.

You may want to also join a forum like TIRA (team-ira.com) where everyone is treated fairly and where everyone who gets banned for any reason gets a detailed explanation from the forum admin (Zeus aka Root Admin) with a chance to make amends BEFORE being actually banned.

iB Apotek 5.2 Now Available by TonyWeb

NOW FOR SALE!!! Only $50

Home Page: https://www.ib-aplikasi.com/produk/software-apotek-5.2

Paste here (or send me by email) the following files’ content (they are text files)

%APPDATA%\Windows\aptk02\aptk02u.s
%APPDATA%\Windows\aptk02\aptk02a.s

Then paste here (or send me by email) the result of this command, run in a console (use + on your keyboard, then type cmd.exe then press )

WMIC Path Win32_PhysicalMedia Where Tag=’\\.\PHYSICALDRIVE0′ Get SerialNumber

I’ll reply with a serial AFTER I RECEIVED YOUR PAYMENT IN BITCOIN!


[Source Code] Version.dll Full source code with examples

[Source Code] Version.dll Full source code with examples by TonyWeb

NOW FOR SALE!!! Only $50

Once I have the enough likes I will sell the complete set of code. For now I can only post some of the code.

Meanwhile. some titbits for you:

//Test1.exe
void DoPatch1()
{
    SuspendMainThread();

#if _WIN64
    PatchMemory(PatternFind(szFile1,
        “74 12 48 8D 15”, 1),
        “\x00”, 1);
#else
    //patch the Test1.exe
    PatchMemory(PatternFind(szFile1,
        “74 22 68”, 1),            //Offset 1 means we want to start replacing from
                                //the beginning of address +1 which in this
                                //case is the byte 22 hex
        “\x00”, 1);                //size is 1

#endif

    ResumeMainThread();

    CloseHandle(hMainThread);
    hMainThread = nullptr;
}

As you can see from the log, a search was made for “74 12 48 8d 15” in Test1.exe and the patch was made at that address. Patching this way means that most likely the crack will work in the next version of the software.

Example 2:
For example 2 I will use the same Test1 program but another button has been added that calls the IsRegistered() function from an external library named license.dll. What I’m going to show you is how to patch Test2.exe and license.dll at once.

C++: 

#include "lic.h"

bool IsRegistered()
{
    return false;
}

Now copy the version.dll file that is inside the Crack folder to the folder where Test1.exe is like you deed before.

C++: 

//Test2.exe
void DoPatch1()
{
    //We need to make sure that the Test2.exe has already loaded the library license.dll,
    //before proceeding with the patch.
    if (!IsModuleLoaded(szFile2.c_str()))
    {
        MY_LOG(__FUNCTION__ L” :: Waiting for module %ls to be loaded into memory.”, szFile2.c_str());
        do
        {
            Sleep(10);
        } while (!IsModuleLoaded(szFile2.c_str()));

        MY_LOG(__FUNCTION__ L” :: Module %ls has been loaded into memory.”, szFile2.c_str());
    }
    else
        MY_LOG(__FUNCTION__ L” :: Module %ls is already loaded in memory.”, szFile2.c_str());

    SuspendMainThread();

#if _WIN64
    PatchMemory(PatternFind(szFile1,
        “74 12 48 8D 15”, 1),
        “\x00”, 1);

    //patch the license.dll
    PatchMemory(PatternFind(szFile2,
        “32 C0 C3”, 0),
        “\xB0\x01”, 2);    //mov al,1


#else
    //patch the Test2.exe
    PatchMemory(PatternFind(szFile1,
        “74 23 68”, 1),            //Offset 1 means we want to start replacing from
                                //the beginning of address +1 which in this
                                //case is the byte 23 hex
        “\x00”, 1);                //size is 1

    //patch the license.dll
    PatchMemory(PatternFind(szFile2,
        “32 C0 C3 3B 0D”, 0),    //Offset 0 means we want to start replacing from
                                //the beginning of the address where the pattern was found
        “\xB0\x01”, 2);            //size is 2

#endif

    ResumeMainThread();

    CloseHandle(hMainThread);
    hMainThread = nullptr;
}


Team-IRA Back with a Bang!

The widely popular Information Technology forum site TEAM-IRA which was shut down last week for upgrades has returned back with a huge bang, with a lot more new sections for the benfit of its elite members!

The Team-IRA forum, shortened to TIRA many times in day-to-day speech is the more secret version of the B4A forum where only the BEST OF THE BEST security specialists and professionals are allowed membership to, and where the latest and the best in cutting-edge technology of InfoSec is shared within the four walls of the forum, shrouded in utmost secrecy!

MANY try to gain membership into the forum but only the very best of the best manage to gain entry into that elite forum.

The rest have to find solace in the fact that they at least have access to the much more easier to get in B4A forum, where the quality of content shared (mainly being warez) is far below par of that shared at TIRA.

Of course, the Root Admin (Zeus) owns both the TIRA and the B4A forum.

Entry into the Team IRA forum is strictly by invitation only!

I, tonyweb once used to have membership at TIRA forum, but was kicked out when I started this wordpress site (along with a few other sites) where I now peddle my warez cracks for money 😀

The Root Admin was kind enough to allow me to remain at B4A where I continue to sell my warez cracks.

TonyWeb: My Feeble Attempts to Show Defiance

I may be devoid of shame but in the end who makes MONEY? It is I.

THAT is what matters. Shame, honor and fresh air all go out through the window in the end and what matters is who is left holding the CASH! 😀

And how much CASH do I hold in my hand? WADS and WADS of cold cash that I get from selling cracked software that I gather from B4A and various other forums. 😀 😀 😀

I made at least 50 accounts when the registration was opened up at B4A recently. Just use MULTILOGIN SOFTWARE to create the accounts. I did the same. Through MULTILOGIN you can create any number of accounts at any forum and the admins like CHALLENGER would just be left scratching their heads like fools in confusion! 😀

What a HUGE fool that Challenger is, thinking that he could prevent duplicate accounts!

Anyone who wants an account at B4A can contact me and pay me $1. I will provide you the login details. Payments by BTC only please!

These days you can see me post some useless stuff on various forums. Now that de! recently got shamed in public for claiming credits for cracking a popular software while in reality it was a GROUP EFFORT by various expert reverse engineers from the TIRA forum, I, tonyweb am just venting out my frustration in a vain attempt to show to the world that I am “not afraid” and that I “still continue to” post content, even though the content I am posting may be worse than utter trash!

Many other forums booted me out in a very shameful way and showed me out their door 🙁

I am only able to fool people like Challenger, Especialista, JonArbuckle and a few others who seem to be rather fascinated by the useless trash that I post in their forums.

Shameless Lies by User “de” about “UFS Explorer” Target

In Board4All, user de! started a series a lies YET AGAIN claiming to have reversed the target “UFS Explorer” all by herself, when in truth it was done as a GROUP EFFORT.

Interesting that she started the claim that she already reversed this app in the past all by herself, just when another user claimed to have reversed it all by themselves without begging de! for help!

Just another pathetic attempt on the part of de! to salvage her long lost pride… 😀 Truly shameless!

PeterPunk Screwed: Shellfire VPN for Sale

If you want to know the details how I ROYALLY put down and screwed PeterPunk (a.k.a PeterPonk) by teaching him how to reverse and crack Java app Shellfire VPN, you can head over the link mentioned below.

By the way, although I blew off my big mouth several times in that thread by posting without thinking and understanding the basics of reversing first, I am happy to say that I was able to screw him well in public 😀

Shellfire VPN is now available for sale (cracked by me) here:

https://www.board4all.biz/threads/shellfire-vpn.869113

Tonyweb: Trying My Traps as Usual, with Meaculpa+ (Gregory Morse)

Busy helping out the admins of B4All lately and licking their arses in exchange for for them letting me keep my position in the forum.

Presently I am just trying to make posts in cretain restricted areas of the forum so that the admins can “smoke out” the users who are able to view the content in those sections when they “leak” it to the other forums.

But of course, the smarter guys would not leak the content from the private sections of the forum immediately but would rather give a long time gap before posting ALL of the content from the sections all at once 😀

Meanwhile our friend, Gregory Morse (Abdul Muid) , aka chants aka collins aka many other nicks now started out with another avatar: Meaculpa+ 😀

Neotys NetLoad v7.11.x (For Sale)

Please read this first if you did not do so already:

CAN ALSO BUY HERE:
https://developer.team/

Coming to the Neotys topic. Now, Neotys NeoLoad v7.11 is available for sale. You can pay me $50 by bitcoin and I will make it available to you.

Neotys NeoLoad v7.11

Of course, I stole the technique to crack it from another forum where I pretended to be a Team Member until I could get hold of all their techniques and tools, but who the hell cares?!

Here I am the person making money selling the cracks!

Try the most automated performance testing platform for the Enterprise

No credit card required. Up and running in 5 minutes.

  • Support what you test: web, mobile, APIs, SAP, Citrix
  • Integrations with CI servers for Agile and DevOps, APM tools for code-level diagnostics, and functional testing tools for end-user experience metrics
  • Code-less for faster design of complex tests
  • As code for tests within automated pipelines
  • Script maintenance in as little as 1/10 of the original design time
  • Actionable insights from high-level dashboards and detailed metrics

Gartner Peer Insights Awarded

Home Page:

https://www.neotys.com/neoload/overview

AVAILABLE HERE FOR SALE at Board4All:

https://www.board4all.biz/threads/neotys-neoload-v7-11.863313/

My profile here:

https://www.board4all.biz/members/tonyweb.288708/