BurpSuite | BurpSuite using the document and some extensions | Plugin library
kandi X-RAY | BurpSuite Summary
kandi X-RAY | BurpSuite Summary
BurpSuite using the document and some extensions.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of BurpSuite
BurpSuite Key Features
BurpSuite Examples and Code Snippets
Community Discussions
Trending Discussions on BurpSuite
QUESTION
I am writing a simple code which is working absolutely fine with one file but I want to do the same process for all files in current working folder. Just like we give * in terminal. For example
ls * // which list all the files and folders in current working directory
What I am trying to do is that I have 100s of files with some of the data I want and lots of junk data. All files are in same format just values I want are different (for your reference these files are browser request/response body saved using BurpSuite (intruder)). So all files are almost same but only some values are different according to the User Account which I want.
My code:
...ANSWER
Answered 2021-Dec-11 at 14:15Create a function and iterate over file names?
QUESTION
I've been using REST APIs (both as a consumer and a developer of) for many years and am just starting to work with a GraphQL API for the first time, specifically, BurpSuite's Enterprise GraphQL API. I like it but I'm definitely missing a few critical concepts.
I am trying to hit their GetScan
endpoint:
ANSWER
Answered 2021-Oct-21 at 14:44curl -k -i -H "Content-Type: application/json" -H "Authorization: Bearer " -X POST -d "{ \"query\": \"$string\"}" ''
QUESTION
After setting up my device with Burpsuite. Im able to capture and intercept request from the mobile browser (Chrome) and only "some request" from my application. I wonder why are some request can't be capture in the HTTP history?
**Note that after setting up the proxy in wifi, my device is showing LIMITED CONNECTION. However I can still have access to internet when surfing website in Mobile Chrome, but some apps (Youtube, Facebook) is totally losing internet access.
Is that the reason why some of my request can't be capture?
Setup works including:
- IP:proxy
- cacert installation (VPN & APPS) + (WIFI)
Some info
- Im using 8082 proxy
- Android 10
After some debugging, I found out that my application is returning Network Error
while firing some requests (those which failed to capture). Though this could be the reasoning of CACERT / proxy set, but I still expect the http request to be appear in burp? Why is not appearing?
ANSWER
Answered 2021-Jun-05 at 11:28If the App is used Certificate Pinning you will not be able to Intercept it, to intercept it you need to bypass Certificate Pinning, Download Frida Server here, and make sure to select the type of your processor(Architecture) Here is the configuration guide also use this code to bypass Certificate Pinning.
The other option is to use Objection to bypass Certificate pinning,
Run this code to install Objection
QUESTION
I am in the process of writing an intercepting proxy tool like Burpsuite for security testing. An important part of that would be sending malformed HTTP requests in the case of which we would have to give the user full control over the request!
So, I can't have complete control while using a library! I need to be able to send raw HTTP requests to the target hosts like,
...ANSWER
Answered 2021-Apr-19 at 11:38There is a module http-tag, which allow writing literal http messages like -
QUESTION
I have not, but shall DAST* security test, out of curiosity, an IoT device; Nodemcu esp8266 www server I built. It's showing a HTML page (on a mobile phone for example) that allows to control and interact with a camera module and a A/C relay. With it I can for example show images captured in the camera I even think it has some image recognition built in, and I can switch on and off a relay for electrical current to a light bulb (110/220v A/C power)
Before I start pentest I though I better start thinking of what types of exploits one would be able to find and detect? Which sinister exploits I will be able to find, or rather ought be able to find given a proper pentest exercise? (And if I do not find exploits, my approach to the pentest of the Iot might be wrong)
I ponder it might be a totally pointless exercise since the esp8266 www server (or rather its LUA programming libraries) might not have any security built into it, so basically it is "open doors" and everything with it is unsafe ?
The test report might just conclude what I can foresee be that the the "user input needs to be sanitized"?
Anyone have any idea what such pentest of a generic IoT device generally reports? Maybe it is possible to crash or reset the IoT device? Buffer overruns, XXS, call own code ?
I might use ZAP or Burpsuite or similar DAST security test tool.
- I could of course SAST test it instead, or too, but I think it will be hard to find a static code analyzer for the NodeMCU libraries and NUA scripting language easily ? I found some references here though: https://ieeexplore.ieee.org/abstract/document/8227299 but it seems to be a long read.
So if someone just have a short answer what to expect in a DAST scan/pentest , it would be much appreciated.
Stay safe and secure out there ! Zombieboy
...ANSWER
Answered 2021-Apr-08 at 01:04I do my vulnerability scanning with OpenVAS (I assume this is what you mean by pentesting?). I am not aware of any IOT focused Tools.
If your server is running on esp8266, i would imagine that there is no much room for authentication and encryption of http traffic, but correct me if i am wrong).
Vulnerability Scan results might show things like unencrypted http traffic, credentials transmitted in cleartext (if you have any credentials fields in the pages served by the web server) etc. Depending on if there is encryption, you might also see weak encryption findings.
You might get some false positives on your lua webserver reacting like other known webservers when exploits are applied. I have seen this kind of false positive specially on DoS vulnerabilities when a vulnerability scan is testing a vulnerability and the server becomes unresponsive. Depending on how invasive your vulnerability scanner is, you might get a lot of false positives for DoS on such a constrained platform.
QUESTION
For safety reasons of my company I removed the URL's. But I think they aren't important for the understanding of the problem.
When I make a post with Burpsuite the post is executed correctly, like this print. The request is represented below:
...ANSWER
Answered 2021-Mar-15 at 16:21The request you are sending looks like this:
Your script sends these headers in json in the request body, but these are request headers. You should send them as headers.
After this change request looks like this:
You can compare your requests using Burp Comparer, you only need to send your request through Burp proxy like in the example where 8040 is Burp Proxy. In the Comparer window, you will see how your request looks like and it will be easier to notice what the problem is.
QUESTION
I am checking Request.UrlReferrer = null
on each page_load
method outside of Postback
. But if it's not null and still someone change the referrer header value using BurpSuite. Then it should redirect to default errorpage.
How should I validate this?
...ANSWER
Answered 2021-Mar-15 at 15:46You cannot trust user input, and request headers (including referer) are user input, they can be chosen arbitrarily by the client. Authorization decisions should not be based on this, because as you said, a client can send whatever referrer they want.
From your question it sounds more like you need some kind of a session to store client state.
QUESTION
So i try to make X number of lists where X is the number of nargs provided in my program.
Example: python program.py --payloads file1 file2 file3 file4
... up to 20 nargs
.
This gives me a list of: payloads_sets = [file1, file2, file3, file4]
(takes up to 20 files)
Now, here is the tricky part where i got stuck. I need to read from each file and iterate through each payload in the file simultaneously to set it in the request I'll make for every payload in the files. TL;DR: There is a different payload set for each defined position (up to a maximum of 20). The attack iterates through all payload sets simultaneously and places one payload into each defined position.
For example:
...ANSWER
Answered 2020-Nov-18 at 13:06You can use the zip
function with destructuring in order to do this:
QUESTION
I once knew the name of python3 module that after importing when gave the name of request file saved by burpsuite, it automatically generated python3 requests headers. What is the module name?
Edit: I am not searching for bs4, instead i am searching for what sqlmap -r
does. I want to implement functionality similar to sqlmap -r
but it was a module rather than what sqlmap is doing, and it made a variable with all the HTTP header set such as cookie, host etc
ANSWER
Answered 2020-Aug-23 at 12:54if I understand your question, you are searching the module name that burp suite is using to display the text from the request. If it's that, bs4 (beautiful soup 4) could be the module.
QUESTION
I'm trying to use requests python to create a post request together with the submit form data. Here it is the HTML form:
...ANSWER
Answered 2020-Jul-21 at 14:23You don't need to add it in python-requests
.This is not the request header of it.
form-data
represents the enctype way.Except form-data
, there also have form-urlencoded
, text/plain
(less common).Get more information on wiki.
Content-Disposition
: Because you used files=file
. it would send by form-data
normally.
name="image"
: The name in the form.(In your circumstance, they are image).
name="submit"
: This usually means the submit button of the form.When you click the button on the page,it would take this.(Mostly you don't need to add it).
If you really like to post it on the first way:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install BurpSuite
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page