forked from fortra/impacket
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from SecureAuthCorp/master
update with original
- Loading branch information
Showing
279 changed files
with
40,591 additions
and
15,598 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Configuration | ||
impacket version: | ||
Python version: | ||
Target OS: | ||
|
||
### Debug Output With Command String | ||
i.e. | ||
smbexec -debug domain/user:password@127.0.0.1 | ||
``` | ||
smbexec -debug domain/user:[email protected] | ||
[+] StringBinding ncacn_np:127.0.0.1[\pipe\svcctl] | ||
[+] Executing %COMSPEC% /Q /c echo cd ^> \\127.0.0.1\C$\__output 2^>^&1 > %TEMP%\execute.bat & %COMSPEC% /Q /c %TEMP%\execute.bat & del %TEMP%\execute.bat | ||
[!] Launching semi-interactive shell - Careful what you execute | ||
C:\Windows\system32>net group | ||
[+] Executing %COMSPEC% /Q /c echo net group ^> \\127.0.0.1\C$\__output 2^>^&1 > %TEMP%\execute.bat & %COMSPEC% /Q /c %TEMP%\execute.bat & del %TEMP%\execute.bat | ||
Traceback (most recent call last): | ||
File "/usr/lib64/python3.7/cmd.py", line 214, in onecmd | ||
func = getattr(self, 'do_' + cmd) | ||
AttributeError: 'RemoteShell' object has no attribute 'do_net' | ||
``` | ||
|
||
### PCAP | ||
If applicable, add a packet capture to help explain your problem. | ||
|
||
### Additional context | ||
Space for additional context, investigative results, suspected issue. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
group: travis_latest | ||
language: python | ||
cache: pip | ||
|
||
matrix: | ||
include: | ||
- python: 2.7 | ||
env: NO_REMOTE=true, TOXENV=py27 | ||
- python: 3.6 | ||
env: NO_REMOTE=true, TOXENV=py36 | ||
- python: 3.7 | ||
env: NO_REMOTE=true, TOXENV=py37 | ||
dist: xenial # required for Python >= 3.7 | ||
|
||
install: pip install flake8 tox -r requirements.txt | ||
|
||
before_script: | ||
# stop the build if there are Python syntax errors or undefined names | ||
- flake8 . --count --select=E9,F72,F82 --show-source --statistics | ||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
- flake8 . --count --ignore=E1,E2,E3,E501,W291,W293 --exit-zero --max-complexity=65 --max-line-length=127 --statistics | ||
|
||
script: tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
include MANIFEST.in | ||
include LICENSE | ||
include ChangeLog | ||
recursive-include examples *.txt *.py | ||
include requirements.txt | ||
include tox.ini | ||
recursive-include examples tests *.txt *.py | ||
recursive-include tests * |
Oops, something went wrong.