Skip to content

Commit

Permalink
added last XSSer version to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
psy committed Dec 15, 2012
1 parent c6a2e17 commit 41c400d
Show file tree
Hide file tree
Showing 54 changed files with 15,005 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
===========

XSSer aka. Cross Site "Scripter" is an automatic -framework- to detect, exploit and report XSS vulnerabilities in web-based applications.

It contains several options to try to bypass certain filters, and various special techniques of code injection.

==========

Websites:

http://xsser.sf.net/
https://www.owasp.org/index.php/OWASP_XSSER

Code Releases:

http://sourceforge.net/projects/xsser/files/

=========
38 changes: 38 additions & 0 deletions xsser-public/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# $Id: Makefile,v 1.6 2008/10/29 01:01:35 ghantoos Exp $
#

PYTHON=`which python`
DESTDIR=/
BUILDIR=$(CURDIR)/debian/xsser
PROJECT=xsser
VERSION=0.4.0

all:
@echo "make source - Create source package"
@echo "make install - Install on local system"
@echo "make buildrpm - Generate a rpm package"
@echo "make builddeb - Generate a deb package"
@echo "make clean - Get rid of scratch and byte files"

source:
$(PYTHON) setup.py sdist $(COMPILE)

install:
$(PYTHON) setup.py install --root $(DESTDIR) $(COMPILE)

buildrpm:
$(PYTHON) setup.py bdist_rpm --post-install=rpm/postinstall --pre-uninstall=rpm/preuninstall

builddeb:
# build the source package in the parent directory
# then rename it to project_version.orig.tar.gz
$(PYTHON) setup.py sdist $(COMPILE) --dist-dir=../
rename -f 's/$(PROJECT)-(.*)\.tar\.gz/$(PROJECT)_$$1\.orig\.tar\.gz/' ../*
# build the package
dpkg-buildpackage -i -I -rfakeroot

clean:
$(PYTHON) setup.py clean
$(MAKE) -f $(CURDIR)/debian/rules clean
rm -rf build/ MANIFEST
find . -name '*.pyc' -delete
3 changes: 3 additions & 0 deletions xsser-public/XSSer/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""
XSSer python package
"""
Loading

0 comments on commit 41c400d

Please sign in to comment.