Re: [Script][Video] EvilGrade (v0.1.1)
v0.1.3
+ Added arguments
+ Checks for superuser
+ Checks interfaces/paths/files exists
> Fix it - Couple of silly typos
> General code improvements
> Improved checking the targets IP Address
Re: [Script][Video] EvilGrade (v0.1.1)
Code:
*] g0tmi1k's (Semi)Automatic evilGrade v0.1.3
[>] Target address?: 192.168.1.103
[>] Checking environment...
evilgrade13.sh: line 85: =eth0: command not found
[-] The interface eth0, isnt correct.
[>] Cleaning up...
[>] Done! (= Have you... g0tmi1k?
Re: [Script][Video] EvilGrade (v0.1.1)
Quote:
Originally Posted by
Krytical
Code:
*] g0tmi1k's (Semi)Automatic evilGrade v0.1.3
[>] Target address?: 192.168.1.103
[>] Checking environment...
evilgrade13.sh: line 85: =eth0: command not found
[-] The interface eth0, isnt correct.
[>] Cleaning up...
[>] Done! (= Have you... g0tmi1k?
Thanks for the bug, Krytical!
Ill have a fix for the next release!
Re: [Script][Video] EvilGrade (v0.1.1)
np, thanks for the hard work! your putting out all kinds of good stuff! keep it up!
Re: [Script][Video] EvilGrade (v0.1.1)
EDIT: Commenting out the lines was not the correct approach, The error lies in line 85, a simple typo.
BEFORE - LINE 85
Code:
$int=$(ifconfig | grep $interface | awk '{print $1}')
AFTER - LINE 85
Code:
int=$(ifconfig | grep $interface | awk '{print $1}')
Then I ran into another error involving the $backdoorPath, This looked like a simple mistake on line 107 showed below..
BEFORE - LINE 107
Code:
if ! [ -d "$backdoorPath" ]; then
AFTER - LINE 107
Code:
if ! [ -e "$backdoorPath" ]; then
The -d conditional operator checks if a directory is a directory and if it exists, while -e checks if a file exists. After these couple changes I got it rolling, but I had to renew my internet connection on the victim to get the update spoof to go through.
Could it be possible to use aireplay-ng --deauth to force this automatically?
Re: [Script][Video] EvilGrade (v0.1.1)
Quote:
Originally Posted by
Krytical
np, thanks for the hard work! your putting out all kinds of good stuff! keep it up!
Thanks for the thanks!
Quote:
Originally Posted by
kernel831
EDIT: Commenting out the lines was not the correct approach, The error lies in line 85, a simple typo.
BEFORE - LINE 85
Code:
$int=$(ifconfig | grep $interface | awk '{print $1}')
AFTER - LINE 85
Code:
int=$(ifconfig | grep $interface | awk '{print $1}')
Then I ran into another error involving the $backdoorPath, This looked like a simple mistake on line 107 showed below..
BEFORE - LINE 107
Code:
if ! [ -d "$backdoorPath" ]; then
AFTER - LINE 107
Code:
if ! [ -e "$backdoorPath" ]; then
The -d conditional operator checks if a directory is a directory and if it exists, while -e checks if a file exists. After these couple changes I got it rolling, but I had to renew my internet connection on the victim to get the update spoof to go through.
Could it be possible to use aireplay-ng --deauth to force this automatically?
Really a big thanks for hints about the coding bugs :)
*Ill fix it for the next release*
I may also try and add in aireplay-ng, but this will not help if they are on a wired network ;)
Re: [Script][Video] EvilGrade (v0.1.1)
Hello m1lky! Yet another fan post!
I have used several scripts from you, and all working quite fine.
I hate to make a communique` in regards to an issue but this one seems quite simple, and the fact that I cannot pin-point the error just makes me feel silly!
So in a last resort, I will ask your opinion. I am getting an error explaining that my interface is incorrect regardless of its availability.
root@bt:~# sh evilGrade-v0.1.3.sh[*] g0tmi1k's (Semi)Automatic evilGrade v0.1.3
[>] Target address?: 192.168.0.100
\[>] Checking environment...
evilGrade-v0.1.3.sh: line 85: =wlan0: command not found
[-] The interface wlan0, isnt correct.
[>] Cleaning up...
[>] Done! (= Have you... g0tmi1k?
root@bt:~#
That is all really, it seems simple enough but my modifications and lack of scripting knowledge is holding me back at the moment.
Re: [Script][Video] EvilGrade (v0.1.1)
Quote:
Originally Posted by
RexBudman
Hello m1lky! Yet another fan post!
I have used several scripts from you, and all working quite fine.
I hate to make a communique` in regards to an issue but this one seems quite simple, and the fact that I cannot pin-point the error just makes me feel silly!
So in a last resort, I will ask your opinion. I am getting an error explaining that my interface is incorrect regardless of its availability.
root@bt:~# sh evilGrade-v0.1.3.sh[*] g0tmi1k's (Semi)Automatic evilGrade v0.1.3
[>] Target address?: 192.168.0.100
\[>] Checking environment...
evilGrade-v0.1.3.sh: line 85: =wlan0: command not found
[-] The interface wlan0, isnt correct.
[>] Cleaning up...
[>] Done! (= Have you... g0tmi1k?
root@bt:~#
That is all really, it seems simple enough but my modifications and lack of scripting knowledge is holding me back at the moment.
This script is just about to have an "update" as its about to be updated to allow for "auto-updates".
I'll look into it, and have a fix in the new update ;)
Re: [Script][Video] EvilGrade (v0.1.1)
Oh interesting!
I will certainly be keenly waiting for this one....
Re: [Script][Video] EvilGrade (v0.1.1)
Quote:
Originally Posted by
RexBudman
Oh interesting!
I will certainly be keenly waiting for this one....
You can try the latest build
Code:
wget -q -N "http://g0tmi1k.googlecode.com/svn/trunk/evilGrade/evilGrade.sh"
*I haven't yet fully tested it*