Returns whether we are frozen via py2exe. This will affect how we find out where we are located. # Reference: http://www.py2exe.org/index.cgi/WhereAmI
()
| 1575 | paths.GITHUB_HISTORY = os.path.join(paths.SQLMAP_HISTORY_PATH, "github.hst") |
| 1576 | |
| 1577 | def weAreFrozen(): |
| 1578 | """ |
| 1579 | Returns whether we are frozen via py2exe. |
| 1580 | This will affect how we find out where we are located. |
| 1581 | |
| 1582 | # Reference: http://www.py2exe.org/index.cgi/WhereAmI |
| 1583 | """ |
| 1584 | |
| 1585 | return hasattr(sys, "frozen") |
| 1586 | |
| 1587 | def parseTargetDirect(): |
| 1588 | """ |
no outgoing calls
no test coverage detected
searching dependent graphs…