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.
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!
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:
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+ π
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
Challenger and Markat (Kate) were not spared either, although they are a part of his real-life family as I see π
In any case, you all know how to find me. Instead of emailing me, in future you can find me directly at this forum where I can sell you my porn and cracked software:
Yeah so EVERYTHING in that article is true. SO WHAT???
It is I, Tonyweb who is raking in the big money. Why the F*CK should I crack for free? And what is wrong in selling porn? Selling porn is a BIG business, by the way!
I consider that article a good advertisement for me!
The license consists in two xml files, natCE83.xml and ndvCE83.xml . The tag called LicenseKey that holds a MD5 file checksum and the tag ExpirationDate the date limit.
The algorithm is very simple:Replace all values of the LicenseKey tag with 32 byte (20 hex).Calculate de MD5Loop every byte doing AND & 15 after second oneAnd SHR plus AND with >> 4 & 15restore the Tag with the new value This license code is inside saglic-ALL-Any.jar, class com.softwareag.common.lic.SagLic and the function is getSignedCertificate
protected String getSignedCertificate(String certificateString) throws SagLicException, UnsupportedEncodingException {
String methodName = "getSignedCertificate";
String tagLicenseKey = "<LicenseKey>";
int keyStartPos;
if ((keyStartPos = SagUtilitiesStrings.indexStrInStr(certificateString, tagLicenseKey, 0, true)) < 0) {
throw new SagLicException(2, methodName);
} else {
byte[] newCertificateBytes = certificateString.getBytes("US-ASCII");
int i;
for(i = keyStartPos + tagLicenseKey.length(); i < 32 + keyStartPos + tagLicenseKey.length(); ++i) {
newCertificateBytes[i] = 32;
}
SagLicMd5 sagLicMd5 = new SagLicMd5();
for(i = 0; i < newCertificateBytes.length; ++i) {
if (SagUtilitiesStrings.isHashableChar(newCertificateBytes[i])) {
sagLicMd5.update(newCertificateBytes, i, 1);
}
}
byte[] digestKey = sagLicMd5.digest();
i = keyStartPos + tagLicenseKey.length();
for(int j = 0; i < 32 + keyStartPos + tagLicenseKey.length(); ++j) {
newCertificateBytes[i] = sHex[digestKey[j] >> 4 & 15];
newCertificateBytes[i + 1] = sHex[digestKey[j] & 15];
i += 2;
}
String newCertificateString = new String(newCertificateBytes, "US-ASCII");
return newCertificateString;