Board4All Forum Latest Update from Forum Staff

This is the latest official update about the Board4All forum from the main forum owner ZEUS:

Board4All Forum Latest Update: December 2022

Don’t forget to read this old post of mine as well:

Board4All HACKED: Forum Members Arrested Across the Globe

You may also want to read this:

WARNING: Beware of the User HOOK aka HOOKAHICE aka CrystalBoy

EMS SQL Manager for PostgreSQL v6.4.0.56075 FREE FOR ALL

This EMS SQL Manager is stolen from Team-IRA forum, now giving it to you for free:

Check this out first, though:

EMS SQL Manager for PostgreSQL is a high performance tool for PostgreSQL database administration and development. It works with any PostgreSQL versions up to the newest one and supports the latest PostgreSQL features including exclusion constrains, β€˜when’ clause of triggers, functions returning table, and others. SQL Manager for PostgreSQL offers plenty of powerful database tools such as Visual Database Designer to create PostgreSQL database in few clicks, Visual Query Builder to build complicated PostgreSQL queries, powerful BLOB editor and many more useful features for efficient PostgreSQL administration. SQL Manager for PostgreSQL has a state-of-the-art graphical user interface with well-described wizard system, so clear in use that even a newbie will not be confused with it.

Download:

Setup Mirrors:

https://doodrive.com/f/mvd1j3
https://www13.zippyshare.com/v/i29134Pd/file.html
https://uptobox.com/kodkl8vz18wg
https://userscloud.com/g00r22g6cc17

Patched File:

https://mixdrop.co/f/end0lrg4u80ozp
https://www37.zippyshare.com/v/1WaIeSXv/file.html

https://gofile.io/d/lTDZ2V
https://download.gg/file-13935057_4d8ded58eed5250b
https://send.cm/fzzhzcofeymf
https://anonfiles.com/dcX2B9z2y7/pgmgrb4a_rar
https://www.upload.ee/files/14344418/pgmgrb4a.rar.html
https://usersdrive.com/59e6t5coyzwv

archive password:
PgMgrByTony@B4A

Register with this serial:

Send me $50 by BTC and I will tell you the registration serial codes.

You can also buy the special porn and cracked software from me on Discord also where my handle is: tonyweb #4463

Dedicated to my very special friend whose dick I like to suck (slurp) and whose balls I like to lick soooo much! πŸ˜€

Yes I am THAT shameless cad who, knowing FULL WELL the damage that is caused to various individuals and forums just because I am stubborn enough to not step down and stop posting in the reversing forums, I STILL stubbornly and shamelessly find it okay and STILL refuse to step down. For me, selling and money is everything! πŸ˜€ πŸ˜€ πŸ˜€

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.