There was an error while loading. Please reload this page.
1 parent 41f2bfd commit 428b16dCopy full SHA for 428b16d
README.md
@@ -1,11 +1,21 @@
1
-# NodeJS-BasicXSSClientServer
2
-For education purposes only.
+# Basic XSS Server
+For educational purposes only.
3
4
-A basic NodeJS server to listen XSS data.
+### Prerequisites
5
+IP and HTTP modules are installed into the node modules folder of the package, but in case you would remove them:
6
-Run:
7
-node app.js
+```
8
+npm i ip
9
10
11
12
+var ip = require('ip')
13
+var http = require('http')
14
15
+## Run
16
-The node modules are included into the git, you can simply copy the code and then:
-npm i ip --save
17
18
+var xss = require('basic-xss-server');
19
+
20
+xss.StartXSS();
21
0 commit comments