Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dnsdudrla97 committed Dec 6, 2020
1 parent 4a53f13 commit 3ea18c5
Show file tree
Hide file tree
Showing 11 changed files with 853 additions and 4 deletions.
2 changes: 2 additions & 0 deletions src/.esp.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ESP: 0019ff28 ( 1703720) -> 2@@PP,@L@8@@tP,@Ll)CuP,CuuCwP,MP,@aDwquCwJsEw;Dw@P,Actx 2 (stack)

2 changes: 2 additions & 0 deletions src/.hash.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
EIP = 00d832c5
hash = 84260117870d0ce63849b995a0992a9e
38 changes: 38 additions & 0 deletions src/crashAllInfo.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
0x00d832c5 xchg [eax],eax from thread 16800 caused access violation
when attempting to write to 0x00000000

CONTEXT DUMP
EIP: 00d832c5 xchg [eax],eax
EAX: 00000000 ( 0) -> N/A
EBX: 002c5000 ( 2904064) -> @]Owx(@[Owpv0]OwP(pm @HOw3OwaJ? (heap)
ECX: c44cb0bc (3293360316) -> N/A
EDX: 00401000 ( 4198400) -> N/A
EDI: 00401000 ( 4198400) -> N/A
ESI: 00401000 ( 4198400) -> N/A
EBP: 00d80ef4 ( 14159604) -> N/A
ESP: 0019ff28 ( 1703720) -> 2@@PP,@L@8@@tP,@Ll)CuP,CuuCwP,MP,@aDwquCwJsEw;Dw@P,Actx 2 (stack)
+00: 0019ffcc ( 1703884) -> DwquCwJsEw;Dw@P,Actx 2 4|N&DTq24J6[IY-22B,0_P8\^VD( (stack)
+04: 00d832d3 ( 14168787) -> N/A
+08: 00401000 ( 4198400) -> N/A
+0c: 00401000 ( 4198400) -> N/A
+10: 00d80ef4 ( 14159604) -> N/A
+14: 0019ff50 ( 1703760) -> 8@@tP,@Ll)CuP,CuuCwP,MP,@aDwquCwJsEw;Dw@P,Actx 2 4| (stack)

disasm around:
0x00d832ae push eax
0x00d832af push dword fs:[0x0]
0x00d832b6 mov [ebp+0x4792],esp
0x00d832bc mov fs:[0x0],esp
0x00d832c3 xor eax,eax
0x00d832c5 xchg [eax],eax
0x00d832c7 pop dword fs:[0x0]
0x00d832ce add esp,0x4
0x00d832d1 popa
0x00d832d2 ret
0x00d832d3 push ebp

SEH unwind:
0019ffcc -> 00d832d3: push ebp
0019ffe4 -> 77449990: mov edi,edi
ffffffff -> 7745734a: nop

Binary file added src/img/main-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion src/main.ui
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
<string>FUZZ FUZZ</string>
</property>
<property name="windowIcon">
<iconset resource="myres.qrc">
<normaloff>:/img/img/main-icon.png</normaloff>:/img/img/main-icon.png</iconset>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(44, 45, 49);</string>
Expand Down
16 changes: 15 additions & 1 deletion src/main_.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
# WARNING! All changes made in this file will be lost!

import main_rc

from PyQt4 import QtCore, QtGui

try:
Expand All @@ -27,6 +28,9 @@ class Ui_Dialog(object):
def setupUi(self, Dialog):
Dialog.setObjectName(_fromUtf8("Dialog"))
Dialog.resize(875, 545)
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap(_fromUtf8(":/img/img/main-icon.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
Dialog.setWindowIcon(icon)
Dialog.setStyleSheet(_fromUtf8("background-color: rgb(44, 45, 49);"))
self.horizontalLayout_4 = QtGui.QHBoxLayout(Dialog)
self.horizontalLayout_4.setObjectName(_fromUtf8("horizontalLayout_4"))
Expand Down Expand Up @@ -242,7 +246,7 @@ def setupUi(self, Dialog):
QtCore.QMetaObject.connectSlotsByName(Dialog)

def retranslateUi(self, Dialog):
Dialog.setWindowTitle(_translate("Dialog", "Dialog", None))
Dialog.setWindowTitle(_translate("Dialog", "FUZZ FUZZ", None))
self.btn_main_3.setText(_translate("Dialog", "START", None))
self.label_program_path.setText(_translate("Dialog", "<html><head/><body><p><span style=\" font-weight:600; color:#ffffff;\">Program Path</span></p></body></html>", None))
self.btn_main_1.setText(_translate("Dialog", "...", None))
Expand All @@ -259,3 +263,13 @@ def retranslateUi(self, Dialog):
"</style></head><body style=\" font-family:\'Samsung Sans\'; font-size:10pt; font-weight:400; font-style:normal;\">\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; color:#ffffff;\"><br /></p></body></html>", None))


if __name__ == "__main__":
import sys
app = QtGui.QApplication(sys.argv)
Dialog = QtGui.QDialog()
ui = Ui_Dialog()
ui.setupUi(Dialog)
Dialog.show()
sys.exit(app.exec_())

Binary file modified src/main_.pyc
Binary file not shown.
791 changes: 790 additions & 1 deletion src/main_rc.py

Large diffs are not rendered by default.

Binary file modified src/main_rc.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion src/myres.qrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<RCC>
<qresource prefix="img">
<file>img/main-icon.png</file>
<file>img/sub-background.png</file>
<file>img/main_img.png</file>
<file>img/main-background.png</file>
</qresource>
<qresource prefix="newPrefix"/>
</RCC>
Binary file modified src/test.txt
Binary file not shown.

0 comments on commit 3ea18c5

Please sign in to comment.