I need to install WebScarab but I do not know what does git and how can I instal it with git. can anyone explain me, how to install latest WebScarab from Git. Link: http://dawes.za.net/gitweb.cgi
4 Answers
The process to use git to checkout the source of WebScarab is as follows:
$ git clone git://dawes.za.net/webscarab.git
$ ant build
$ java -jar webscarab.jar

- 350
- 2
- 9
git clone git://dawes.za.net/webscarab.git doesn't seem to work
try:
rename file to: webscarab.tar.gz use: tar -xf webscarab.tar.gz
this is taking too long ... zzz

- 1,089
- 2
- 10
- 25
As the main WebScara page mentions, you don't need Git to install WebScara:
A ZIP containing an up to date build of the master branch of the webscarab git tree can be found here.
This file is rebuilt whenever new commits are pushed to the repository, and will always be the most up to date build of WebScarab available.
- Linux:
java -jar ./webscarab-selfcontained-[numbers].jar
- Windows: double-click the installer jar file (complete installation instructions)
In short, unless you want to develop/contribute to the code base of WebScara, you don't need Git.

- 1,262,500
- 529
- 4,410
- 5,250
-
3This is not working at all. The first link doesn't have any zip file, and the second returns 503. If you download the tarbal, there is no jar inside, and you have to built it your self. – Guillermo Nov 12 '12 at 19:46
-
@Guillermo true, yet those are the links still mentioned in https://www.owasp.org/index.php/Category%3aOWASP_WebScarab_Project. I will investigate and see if new updated links can be found. – VonC Nov 12 '12 at 19:50
For those that are unfamiliar with git and compiling java code (like myself), webscarab isn't worth the trouble with other tools like Fiddler out there.

- 1,048,767
- 296
- 4,058
- 3,343

- 1