Skip to content

Commit 65adf9d

Browse files
committed
added license
1 parent 17ce7d6 commit 65adf9d

18 files changed

+542
-0
lines changed

.gitignore

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# built application files
2+
*.apk
3+
*.ap_
4+
5+
# files for the dex VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# generated files
12+
bin/
13+
gen/
14+
15+
# Local configuration file (sdk path, etc)
16+
local.properties
17+
18+
*.pydevproject
19+
.project
20+
.metadata
21+
bin/**
22+
tmp/**
23+
tmp/**/*
24+
*.tmp
25+
*.bak
26+
*.swp
27+
*~.nib
28+
local.properties
29+
.classpath
30+
.settings/
31+
.loadpath
32+
33+
# External tool builders
34+
.externalToolBuilders/
35+
36+
# Locally stored "Eclipse launch configurations"
37+
*.launch
38+
39+
# CDT-specific
40+
.cproject
41+
42+
# PDT-specific
43+
.buildpath

LICENSE

+225
Large diffs are not rendered by default.

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dSploit - An Android tool to perform network analysis, port scanning, mitm attacks and many, etc.
2+
3+
by Simone Margaritelli aka evilsocket
4+
<evilsocket@gmail.com - http://www.evilsocket.net>

src/it/evilsocket/dsploit/ActionActivity.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit;
220

321
import java.util.ArrayList;

src/it/evilsocket/dsploit/MainActivity.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit;
220

321
import java.net.NoRouteToHostException;

src/it/evilsocket/dsploit/gui/dialogs/ErrorDialog.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.gui.dialogs;
220

321
import android.app.Activity;

src/it/evilsocket/dsploit/gui/dialogs/FatalDialog.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.gui.dialogs;
220

321
import android.app.Activity;

src/it/evilsocket/dsploit/gui/dialogs/InputDialog.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.gui.dialogs;
220

321
import android.app.Activity;

src/it/evilsocket/dsploit/net/Endpoint.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.net;
220

321
import java.math.BigInteger;

src/it/evilsocket/dsploit/net/Network.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.net;
220

321
import java.net.InetAddress;

src/it/evilsocket/dsploit/net/Target.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.net;
220

321
import it.evilsocket.dsploit.R;

src/it/evilsocket/dsploit/plugins/MITM.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.plugins;
220

321
import java.util.ArrayList;

src/it/evilsocket/dsploit/plugins/PortScanner.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.plugins;
220

321
import java.util.ArrayList;

src/it/evilsocket/dsploit/system/Environment.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.system;
220

321
import java.io.BufferedReader;

src/it/evilsocket/dsploit/system/Plugin.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.system;
220

321
import android.app.Activity;

src/it/evilsocket/dsploit/system/ToolsInstaller.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.system;
220

321
import android.content.Context;

src/it/evilsocket/dsploit/tools/NMap.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.tools;
220

321
import java.io.IOException;

src/it/evilsocket/dsploit/tools/Tool.java

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* This file is part of the dSploit.
3+
*
4+
* Copyleft of Simone Margaritelli aka evilsocket <evilsocket@gmail.com>
5+
*
6+
* dSploit is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* dSploit is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with dSploit. If not, see <http://www.gnu.org/licenses/>.
18+
*/
119
package it.evilsocket.dsploit.tools;
220

321
import java.io.IOException;

0 commit comments

Comments
 (0)