Skip to content

Commit 428b16d

Browse files
authored
Add files via upload
1 parent 41f2bfd commit 428b16d

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

README.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
1-
# NodeJS-BasicXSSClientServer
2-
For education purposes only.
1+
# Basic XSS Server
2+
For educational purposes only.
33

4-
A basic NodeJS server to listen XSS data.
4+
### Prerequisites
5+
IP and HTTP modules are installed into the node modules folder of the package, but in case you would remove them:
56

6-
Run:
7-
node app.js
7+
```
8+
npm i ip
9+
```
810

11+
```
12+
var ip = require('ip')
13+
var http = require('http')
14+
```
15+
## Run
916

10-
The node modules are included into the git, you can simply copy the code and then:
11-
npm i ip --save
17+
```
18+
var xss = require('basic-xss-server');
19+
20+
xss.StartXSS();
21+
```

0 commit comments

Comments
 (0)