diff options
author | Dan Fedele <dan.fedele@gmail.com> | 2020-09-05 11:01:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-05 11:01:41 -0400 |
commit | c714fc9405f19a25f115b92b4384b82cf670856d (patch) | |
tree | 543e706b31a29a1572e8e4c031dae6b94318747f | |
parent | d079ac80c59a94f7ae5fcaef645fd53fdc57f16b (diff) |
Added ysoserial
cloned ysoserial and downloaded jar file
-rw-r--r-- | parrot.yml | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -156,6 +156,17 @@ repo: 'https://github.com/hugsy/gef.git' dest: /opt/gef + - name: Clone Ysoserial + git: + repo: 'https://github.com/frohoff/ysoserial' + dest: /opt/ysoserial + + - name: Downloading Ysoserial JAR file + get_url: + url: https://jitpack.io/com/github/frohoff/ysoserial/master-SNAPSHOT/ysoserial-master-SNAPSHOT.jar + dest: /opt/ysoserial/ysoserial-master-SNAPSHOT.jar + mode: '0644' + - name: Get Evil-WinRM via gem installer gem: name: evil-winrm |