Skip to content

Commit 04a498e

Browse files
committed
XSSer v1.8.2 - 'The Hiv3' release
1 parent f717288 commit 04a498e

35 files changed

+1432
-623
lines changed

.gitattributes

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
*.conf text eol=lf
2+
*.md text eol=lf
3+
*.md5 text eol=lf
4+
*.py text eol=lf
5+
*.xml text eol=lf
6+
LICENSE text eol=lf
7+
COMMITMENT text eol=lf
8+
9+
*_ binary
10+
*.dll binary
11+
*.pdf binary
12+
*.so binary
13+
*.wav binary
14+
*.zip binary
15+
*.x32 binary
16+
*.x64 binary
17+
*.exe binary
18+
*.sln binary
19+
*.vcproj binary
20+

.github/CODE_OF_CONDUCT.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment include:
10+
11+
* Using welcoming and inclusive language
12+
* Being respectful of differing viewpoints and experiences
13+
* Gracefully accepting constructive criticism
14+
* Focusing on what is best for the community
15+
* Showing empathy towards other community members
16+
17+
Examples of unacceptable behavior by participants include:
18+
19+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
* Trolling, insulting/derogatory comments, and personal or political attacks
21+
* Public or private harassment
22+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
* Other conduct which could reasonably be considered inappropriate in a professional setting
24+
25+
## Our Responsibilities
26+
27+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28+
29+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30+
31+
## Scope
32+
33+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34+
35+
## Enforcement
36+
37+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project leader at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38+
39+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40+
41+
## Attribution
42+
43+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44+
45+
[homepage]: http://contributor-covenant.org
46+
[version]: http://contributor-covenant.org/version/1/4/
47+

.github/CONTRIBUTING.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Contributing to XSSer
2+
3+
## Reporting bugs
4+
5+
Please report all bugs on the [issue tracker](https://github.com/epsylon/xsser/issues).
6+
7+
### Guidelines
8+
9+
* Before you submit a bug report, search both [open](https://github.com/epsylon/xsser/issues?q=is%3Aopen+is%3Aissue) and [closed](https://github.com/epsylon/xsser/issues?q=is%3Aissue+is%3Aclosed) issues to make sure the issue has not come up before.
10+
11+
* Make sure you can reproduce the bug with the latest development version of xsser.
12+
13+
* Your report should give detailed instructions on how to reproduce the problem. If xsser raises an unhandled exception, the entire traceback is needed. Details of the unexpected behaviour are welcome too. A small test case (just a few lines) is ideal.
14+
15+
* If you are making an enhancement request, lay out the rationale for the feature you are requesting. *Why would this feature be useful?*
16+
17+
## Submitting code changes
18+
19+
All code contributions are greatly appreciated.
20+
21+
Our preferred method of patch submission is via a Git [pull request](https://help.github.com/articles/using-pull-requests).
22+
23+
### Guidelines
24+
25+
In order to maintain consistency and readability throughout the code, we ask that you adhere to the following instructions:
26+
27+
* Each patch should make one logical change.
28+
* Avoid tabbing, use four blank spaces instead.
29+
* Before you put time into a non-trivial patch, it is worth discussing it privately by [email](mailto:[email protected]).
30+
* Do not change style on numerous files in one single pull request, we can [discuss](mailto:[email protected]) about those before doing any major restyling, but be sure that personal preferences not having a strong support in [PEP 8](http://www.python.org/dev/peps/pep-0008/) will likely to be rejected.
31+
* Make changes on less than five files per single pull request - there is rarely a good reason to have more than five files changed on one pull request, as this dramatically increases the review time required to land (commit) any of those pull requests.
32+
* Style that is too different from main branch will be ''adapted'' by the developers side.
33+
34+
### Licensing
35+
36+
By submitting code contributions to the xsser developers or via Git pull request, checking them into the xsser source code repository, it is understood (unless you specify otherwise) that you are offering the xsser copyright holders the unlimited, non-exclusive right to reuse, modify, and relicense the code. This is important because the inability to relicense code has caused devastating problems for other software projects (such as KDE and NASM). If you wish to specify special license conditions of your contributions, just say so when you send them.
37+

.github/ISSUE_TEMPLATE/bug_report.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug report
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
1. Run '...'
15+
2. See error
16+
17+
**Expected behavior**
18+
A clear and concise description of what you expected to happen.
19+
20+
**Screenshots**
21+
If applicable, add screenshots to help explain your problem.
22+
23+
**Running environment:**
24+
- XSSer version [e.g. 1.8.2]
25+
- Installation method [e.g. git]
26+
- Operating system: [e.g. Debian 4.19.16-1~bpo9+1 (2019-02-07) ]
27+
- Python version [e.g. 3.7]
28+
29+
**Target details:**
30+
- XSS techniques found by xsser [e.g. DOM-Based XSS]
31+
- WAF/IPS [if any]
32+
- Relevant console output [if any]
33+
- Exception traceback [if any]
34+
35+
**Additional context**
36+
Add any other context about the problem here.
37+
38+
---
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: feature request
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
21+
22+
---

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
__pycache__/
2+
*.py[cod]

0 commit comments

Comments
 (0)