Questions tagged [burp]

Burp is a proxy tool which is used for intercepting proxy server for security testing of web applications. It operates as a man-in-the-middle between your browser and the target application, allowing you to: Intercept and modify all HTTP/S traffic passing in both directions. Easily analyze all kinds of content, with automatic colorizing of request and response syntax, rendering of web content, and parsing of serialization schemes like AMF.

Note: question about how to use Burp is off-topic on Stack Overflow; please ask question on Super User. This tag is about programming using Burp, that is, Burp Extender.

297 questions
0
votes
0 answers

incorrect status code displayed in password guessing attack using burp suite

would anyone please take a look at the image of my burp suite result. I am learning how to brute force password guessing attack for penetration testing subject. Assuming test and test is the correct username and password, but as attacker they do not…
Skyb
  • 11
  • 5
0
votes
0 answers

problem in linux A JNI error has occurred linux

I have downloaded burpsuite pro version but I got this error while using this command java -javaagent:BurpSuiteLoader_v2021.3.2.jar -noverify -jar burpsuite_pro_v2021.3.2.jar Picked up _JAVA_OPTIONS: -Dawt.useSystemAAFontSettings=on…
0
votes
1 answer

How to automatically respond to a request in Burp?

I am using Burp as a reverse proxy (a.k.a. "invisible proxying" in the app). For requests that match a specific rule, I need to not forward them to the real server but respond with a predefined response (in form of headers + body or from file).…
greatvovan
  • 2,439
  • 23
  • 43
0
votes
1 answer

How to use spider in Burp through ZAP?

Burp Community Edition from version 2.x doesn't have the scanning/spidering as a free option. Is it possible to use spidering in Burp Community Edition using ZAP as a proxy?
Mate Mrše
  • 7,997
  • 10
  • 40
  • 77
0
votes
1 answer

Different return of Burpsuite repeater and python requests

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: POST…
0
votes
0 answers

Dont send ACK after server response

Hey i have a quick question about some ssl stuff. Is there any way NOT to send acknowledgement (ACK) back to the server after its response? What am i doing, is testing a friends webapp, written in PHP i suppose, but i don't have a source code, and i…
Aesthetick
  • 61
  • 3
0
votes
1 answer

Why am I getting CURLE_NOT_BUILT_IN when using libcurl with CURLOPT_PROXY?

I'm debugging some HTTP request, using a proxy (Burp). Let's say we have this command, running OK. Burp is capturing everything: curl --proxy localhost:8080 -k https://www.ipchicken.com/ Now I'm trying to do the same, programmatically: CURL …
Alvein
  • 167
  • 1
  • 9
0
votes
1 answer

Can't configure Docker to use Burp Suite proxy on Catalina

I'm trying to use Docker with a proxy server that has its own CA cert. I can't figure out how to configure the proxy for all containers running under my user without installing the certificate on each one. Any help with this would be much…
Dana Scheider
  • 389
  • 3
  • 15
0
votes
1 answer

Could not create the Java Virtual Machine Error

I'm trying to run this command on my linux machine: java -noverify -Xbootclasspath/p:burp-loader-keygen-2020_2.jar -jar burpsuite_pro_v2020.2.jar and i keep getting these errors: -Xbootclasspath/p is no longer a supported option. Error: Could not…
user13925035
0
votes
1 answer

How to set 127.0.0.1 as a proxy for firefox

I'm trying to set 127.0.0.1 as a proxy for Firefox (for use with burp suit) as shown as below picture. But it is not working. The browser is continuously showing the message "The proxy server is refusing connections" What should I do? Thanks in…
0
votes
0 answers

Application cookie is not clearing after logout

After logging out and clearing all the cookies, still data transaction is happening in BurpSuite. I am using OAuth for authorization. Even I am revoking all the tokens of oAuth during logout. Any clue why it is happening?
0
votes
2 answers

How to parse burp suite request from file in python3?

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…
Machine Yadav
  • 196
  • 3
  • 13
0
votes
1 answer

Burp : Data is read from document.location and passed to $() via the following statements

How to deal with this code ? Data is read from document.location and passed to $() via the following statements: var url = document.location.toString(); $('.nav-tabs a[href="#' + url.split('#')[1] + '"]').tab('show');
Parth Pithadia
  • 276
  • 1
  • 3
  • 18
0
votes
2 answers

Not able to load https site through burp

I am not able to load the https sites on google chrome. I have successfully installed the Burps certificate but still am not able to resolve the problem. However the sitemap is getting populated by the https site i am navagating. It came with…
Yatin Kanyal
  • 195
  • 1
  • 13
0
votes
0 answers

How to send requests using curl through burp with python?

I'm trying to route certain requests through burp. These would be HTTPS requests I have burp properly installed, and placed the cacert.der certificate in the current working directory that the code is contained. I've looked at…
user5423
  • 135
  • 13