Jump to content

Become Anonymous, Hide Ip, Encrypt&hide Hdd, Hide Identity.


Recommended Posts

Posted (edited)

**THIS IS A PRIVATE TUTORIAL CREATED BY WHITEFLAME**

 
 
This tutorial has been written for the Wraith and is NOT for public distibution.
All information in this tutorial is for educational purposes only. Any  illegal activity relating to this tutorial is not my responsibility,  although I would like to say I don't care how you use it, I do. So  please do not use this for Black-hat activities. One day when you grow  up you might realise that you have been a skid, by using mass-deface  techniques and SQLi for your entire life. Do not just hack a site  because it is there. I have a few sites of my own and its annoying,  unproductive, and pointless.
 
Hide like a hacker
 
 
i- Protection
ii- Encryption
iii- Anonymity
iv- Links
 
 
Protection
 
Basically what I am trying to say in this section is, before you go out  hacking other people and other things, just check for a second and make  sure it's not as easy to hack your device. There are some pretty simple  steps for this though.
 
  •  
  • Make sure all your security updates are installed, if you have windows firewall disable it.
  • Download your own firewall. If you are behind a router you can skip this.
  • Make sure all unused ports are closed.
  • Check your msconfig, run a few HJT logs and Malwarebyte's to make sure you are not already infected.
  • Use a keyscambler to prevent keyloggers
 
 
It is important that you are not infected because other could see you  hacking and steal it from you or alternitively, if they get caught, you  get caught. On the other hand you might want to stay infected by a bot  or RAT so if and when you are caught you can claim you had no knowledge  and the bot controlled your PC and performed the hack without your  knowledge. However I am not someone who intends to be caught. (I'm not  really a black hat either)
 
I don't personally use an AV for many reasons reasons:
  •  
  • It is possible to make an FUD virus, this is likely to be what you get infected with.
  • It often goes around deleting your stuff without asking.
  • They slow down your PC and often hog the CPU.
  • Whilst performing updates it slows down your connection.
 
 
FireWall: (not tested)
 
KeyScrambler:
 
HJT:
 
Malewarebytes:
 
Another way to prvent this is to use a Lixux-based O/S as altohugh these  aren't 100% secure they have a lot on Windows machines due to the fact  they are less common.
 
But remember you are not invisible: 
 
 Code:
 
If you downloaded and installed the open-source Unreal IRC server in the last 8 months or so, you’ve been pwned.
 
"Hi all,
 
This is very embarrassing…
 
We found out that the Unreal3.2.8.1.tar.gz file on our mirrors has been  replaced quite a while ago with a version with a backdoor (trojan) in  it.
 
This backdoor allows a person to execute ANY command with the privileges  of the user running the ircd. The backdoor can be executed regardless  of any user restrictions (so even if you have passworded server or hub  that doesn’t allow any users in)."
 
 
Encryption
 
Be under no ilussions, this is one of the most important steps to  keeping information secret. Now I am a big fan of encryption and here is  why:
 
 Code:
 
"if your encryption program uses  128-bit keys, your particular key could be any of more than 3.4  trillion billion billion billion possible combinations. More likely to  win the lottery than to crack that level of encryption using the  brute-force method"Or just use RSA 4096-bit and 256-bit AES?
 
 
Now I think this says a little bit about how much safer encryption makes  you, if you encrypt your HDD using 256-bit, there is little chance even  the authorities will crack it.... in your lifetime. However do be aware  of local law for example in the UK the new Regulation of Investigatory Powers Act states:
 
 Code:
 
Individuals who are believed to  have the cryptographic keys necessary for such decryption will face up  to 5 years in prison for failing to comply with police or military  orders to hand over either the cryptographic keys, or the data in a  decrypted form.
 
 
The penelties are up to 5 years for terrorism-related inforamtion and 2 years for "All other failures to comply"
 
Therefore depending on the strength of your offence it could be more  wise to with-hold your key on claims of a privacy breach, and face the  maximum two years than to hand over your keys. 
 
The program I most recomend for doing this is 
 
TrueCrypt:
 
True crypt can provdie 256-bit encryption 
 
 Code:
 
The design and strength of all  key lengths of the AES algorithm (i.e., 128, 192 and 256) are sufficient  to protect classified information up to the SECRET level. TOP SECRET  information will require use of either the 192 or 256 key lengths.
 
 
Oh and that's not even the most useful part:
 
 Code:
 
TrueCrypt allows you to create a  hidden operating system whose existence will be impossible to prove  (provided that certain guidelines are followed — see below). Thus, you  will not have to decrypt or reveal the password for the hidden operating  system.
 
 
As there is a pre-boot authentication process which asks for your  encryption password you can have two, one for people to see and one for  hacking purposes. This is IMPOSSIBLE to prove so I highly recommed using  it, although I don't use it myself...
 
Anonymity
 
Now, this is THE MOST IMPORTANT  section of the whole tutorial, get this part right and you can pretty  much forget about the rest (however if you are performing something  illegal following the other steps might help you sleep better).
 
Hidding your IP and identity is crucial. Here is my prefred methods:
 
  •  
  • SOCKS5 Proxy
  • L1 HTTPS Proxy
  • GCI proxy
  • Encrypted VPN (no logs)
 
 
Diference between SOCKS and HTTP
 
 Code:
 
SOCKS
 
Bill wishes to communicate with Jane over the internet, but a firewall  exists on his network between them and Bill is not authorized to  communicate through it himself. Therefore, he connects to the SOCKS  proxy on his network and sends to it information about the connection he  wishes to make to Jane. The SOCKS proxy opens a connection through the  firewall and facilitates the communication between Bill and Jane. For  more information on the technical specifics of the SOCKS protocol, see  the sections below.
HTTP
 
Bill wishes to download a web page from Jane, who runs a web server.  Bill cannot directly connect to Jane's server, as a firewall has been  put in place on his network. In order to communicate with the server,  Bill connects to his network's HTTP proxy. His internet browser  communicates with the proxy in exactly the same way it would the target  server—it sends a standard HTTP request header. The HTTP proxy reads the  request and looks for the Host header. It then connects to the server  specified in the header and transmits any data the server replies with  back to Bill.
 
 
Remember: 
 
 Code:
 
HTTP proxies are traditionally  more HTTP protocol aware and do more high level filtering (even though  that usually only applies to GET and POST methods, not CONNECT). SOCKS  proxies can also forward UDP traffic and work in reverse - HTTP proxies  can't do that.
 
 
Due to the restrictions of a HTTP proxy, they ONLY work for HTTP traffic  and do not support UDP and other types of proxy uses. the reason is  because they "infer the address of the server and therefore may only be  used for HTTP traffic".
 
Use both HTTP and SOCKS if possible though this is known as "Proxy  Chaining" this is used to make your actions harder to trace but its not  truely effective.
 
REMEBER: Do not use an L3 HTTP proxy as they show your true IP in the header and are therefore essentially pointless.
 
VPN
 
This is by far the most effective way to conceal your identity. It  channels you traffic and encrpts it with 128-bit. Although some support  256-bit. Often a VPN is much more reliable and does not slow down your  connection as much (in fact I haven't noticed mine at all)
 
A VPN is a virtual Private Network
 
 Code:
 
"Secure VPNs use cryptographic  tunneling protocols to provide confidentiality by blocking  intercepts  and packet sniffing, allow sender authentication to block  identity spoofing, and provide message integrity by preventing message  alteration."
 
 
The best VPN's are paid I used to have a link to a free VPN but that is dead now. I will edit this if I find a link again.
 
A decent PAID VPN is: HMA
 
But always use this in conjunction with something else if you are breaking something...
 
ProxyFirewall is a good program which runs SOCKS and HTTP proxies
 
 
Bibliography:
 
UK law report:
 
Regulation of Investigatory Powers Act: 
 
Goverment stance on AES: 
 
Wikipedia review on AES:
 
TrueCrypt Hidden o/s:
 
SOCKS Information and example:
 
Proxy Chaining:
 
Linux infection news:
 
Official IRCd announcement:
 
Downloads linked:
 
Proxy firewall:
 
TrueCrypt:
 
UltraVPN:
 
FireWall: (not tested)
 
KeyScrambler:
 
HJT:
 
Malewarebytes:
Edited by Kràtos
Guest
This topic is now closed to further replies.


  • Posts

    • Very nice and passionate effort. Good luck.
    • SX.ORG is a global proxy platform offering residential, mobile and datacenter IPs for SEO, web scraping, ad verification and multi-account management. It provides flexible IP rotation, precise geo-targeting, HTTP(S)/SOCKS5 support, API access and pay-as-you-go pricing based only on the traffic you use.
    • L2-IMBA — SEASON 2  Custom PvP / PvE Interlude · Every Class Playable BETA — LIVE NOW GRAND START — 11 September 2026, 20:00 GMT+2 https://l2-imba.com · https://discord.com/invite/jmhVpj8ySv ═══════════════════════════════════════ RATES & CORE SETTINGS ═══════════════════════════════════════ Chronicle — Interlude XP / SP — x45, level-adjusted curve Adena — x1 Max level — 90 Subclass — 1, to level 80 Starting hub — Giran Skills — Auto-learn, post-80 via custom trainers Loot — Auto-loot with low-value filtering Buffs — Extended duration, expanded slots, saved schemes Client limit — NO DUAL-BOXING, one client per player Automation — Built-in auto-farm with daily time limit Offline — Trading and crafting enabled Current beta configuration. Final values confirmed at launch sign-off. ═══════════════════════════════════════ All 31 third classes are developed to level 90 through five specialized trainers — there are no dead classes here. Tanks, daggers, archers, warriors, summoners, healers, buffers and crafters all have real post-80 progression and a role worth playing. Full PvE progression through ten farm zones, thirty-five themed encounters and eighteen tracked raids, feeding into gear-equalized Team vs Team and open-world PvP. This isn't a stat patch with a new name. L2-IMBA keeps the combat, classes and world of Interlude and builds a new endgame on top of it — new equipment branches, custom class development past level 80, purpose-built farm ecosystems, boss progression, crafting, and augmentation, all connected into one progression loop. Level and develop your class → choose an armor identity → clear themed farm content → collect materials and boss resources → craft and upgrade without abandoning your build → compete in equalized and open-world PvP → reach God's equipment. ═══════════════════════════════════════ ROLE MASTERY ARMOR ═══════════════════════════════════════ Starting at Dynasty, armor becomes a real build choice instead of a mandatory set everyone wears. Each armor type offers three role masteries plus a flexible Universal path — twelve paths per tier, sixty full-set configurations across the progression. The chest piece selects your mastery; a matching five-piece set activates it. HEAVY   Juggernaut — frontline wall, shield synergy, reflection   Spellbreaker — anti-magic fortress, spell disruption   Slayer — heavy armor turned offensive, vampiric sustain LIGHT   Bowmaster — ranged pressure, kiting, accuracy   Assassin — positional burst, blow reliability, dagger lethals   Berserker — high-risk carry, power rises as HP falls ROBE   Arcanist — rapid-fire critical casting   Invoker — high-impact nuking and debuffs   Oracle — dedicated healing and support Upgrade recipes preserve your chosen path through every tier: Dynasty → Zariche → Valakas → Cursed → God's The system is gear-driven, not class-locked. Build creatively. ═══════════════════════════════════════ LEVEL 90 CLASS DEVELOPMENT ═══════════════════════════════════════ Max level extended to 90. Five specialized trainers — Archer, Tank, Rogue, Warrior, Mystic — cover all 31 third classes in post-80 progression, with 470+ learning entries. Every race gets a custom passive from level one. Tanks get distinct Human/Elf/Dark Elf identities. Duelist gains a two-handed greatsword path. Fortune Seeker becomes a real fighter without losing its spoil identity. Maestro gets a durable frontline route. Summoners, cubics and servitors get deeper combat logic rather than stat scaling. This is backed by server-side combat work — dedicated handling for debuff proficiency, PvE skill damage, blows, lethals, bow reuse, vampirism and reflection. ═══════════════════════════════════════ THE FARMING WORLD ═══════════════════════════════════════ Ten dedicated farm destinations via Global Gatekeeper: Farm Coins 1 & 2, Holy, Fire/Water, Wind, Earth, Unholy, Golden, Chaotic and Night zones. Seven themed enemy families — Undead, Demon, Angel, Beast, Bug, Water, Fire — each with four stages and a mini-boss. Thirty-five distinct encounters, each with its own resource identity feeding crafting. Eighteen tracked raids — twelve Farm Raid Bosses and six Custom Epic Raid Bosses. Plus a scheduled group-based Party Zone with dynamically managed normal and rare spawns. ═══════════════════════════════════════ CRAFTING & ENDGAME ═══════════════════════════════════════ SOUL FORGE — recycle old weapons into tier resources, convert boss and farm materials, craft Legendary components. Old gear becomes input, not warehouse clutter. CURATED AUGMENTATION — data-driven Top-Grade and Legendary profiles with meaningful stat, active and passive pools. Active effects are categorized so the same effect can't be stacked through equipment swapping. EXTENDED ENCHANT — Custom Crystal and Legendary stages. On the Legendary route, a failed enchant does not destroy the item or reduce its enchant level. Long-term progression, not an all-or-nothing gamble. TREASURE CHESTS — Rare, Immortal, Epic and Legendary tiers feeding gear growth, crafting and augmentation. ═══════════════════════════════════════ PvP ═══════════════════════════════════════ Gear-equalized Team vs Team on a recurring schedule — your equipment is snapshotted and restored, so the fight is about play, not who farmed longest. Open-world PvP with rewards and ranks alongside it. ═══════════════════════════════════════ QUALITY OF LIFE ═══════════════════════════════════════ - No dual-boxing — one client per player, enforced - Built-in auto-farm with a daily time limit — no third-party software needed, and third-party automation is bannable - Auto-learn skills, auto-loot with low-value drop filtering - Extended-duration buffs, expanded slots, saved schemes - Offline trading and crafting - Global Gatekeeper, global class change - Offline combat automation disabled ═══════════════════════════════════════ BY THE NUMBERS ═══════════════════════════════════════ 380+ custom item definitions · 110+ weapons and shields · 210+ armor and wearables · 250+ custom skill definitions · 2,700+ custom monster placements · 90+ shop and exchange catalogs · 1,100+ offers ═══════════════════════════════════════ BETA ═══════════════════════════════════════ Core systems, progression identities and content routes are in place. Exact item bonuses, mastery values, skill strength, reuse times, augment pools, enchant chances, drop rates and crafting costs remain subject to testing. Beta changes will refine balance without removing the defining role of each mastery or the overall progression structure. All beta characters are wiped at full launch. Beta testers keep their rewards. ═══════════════════════════════════════ OPEN BETA — 4 SEPTEMBER 2026 · 18:00 GMT+2 Website: https://l2-imba.com Wiki: https://l2-imba.com/wiki Register: https://l2-imba.com/account Download: https://l2-imba.com/start-playing Discord:  https://discord.com/invite/jmhVpj8ySv
    • 🛡️ 100% Safe on your personal Gmail. Zero VPN required and works globally. Grab yours directly on klouditem.com!
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..