Welcome, Guest |
You have to register before you can post on our site.
|
|
|
Ubuntu 18LTS client problem. |
Posted by: ahmedramze - 10-11-2020, 01:40 PM - Forum: Problems
- Replies (1)
|
 |
Hello
I setup Server on ubuntu server 18LTS and its running well I follow the instruction on video and wiki and all setup ok.
the issue I have client also running command
python3 hashtopolis.zip
and running well and waiting for task
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #000000} span.s1 {font-variant-ligatures: no-common-ligatures}
No task available!
{'action': 'getTask', 'token': 'PpF2kpw3Zr'}
http://x.x.x.x:80 "POST /hashtopolis/api/server.php HTTP/1.1" 200 94
b'{"action":"getTask","response":"SUCCESS","taskId":null,"reason":"No suitable task available!"}'
No task available!
all now ok
I configured web binary etc al ok
just when i set a task or do health check for the server I got this erorr
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #000000} span.s1 {font-variant-ligatures: no-common-ligatures}
b'{"action":"downloadBinary","response":"SUCCESS","url":"https:\\/\\/hashcat.net\\/files\\/hashcat-6.1.1.7z","name":"hashcat","executable":"hashcat.bin"}'
Starting check ID 11
CALL: ./hashcat.bin --version
CALL: ./hashcat.bin --machine-readable --quiet --restore-disable --potfile-disable --session=health --hash-type=0 ../../hashlists/health_check.txt -a 3 -1 ?l?u?d ?1?1?1?1?1 -o ../../hashlists/health_check.out
Started health check attack
Traceback (most recent call last):
File "/usr/lib/python3.6/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/usr/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "hashtopolis.zip/__main__.py", line 343, in <module>
File "hashtopolis.zip/__main__.py", line 164, in loop
File "hashtopolis.zip/__main__.py", line 68, in run_health_check
IndexError: list index out of range
any help ?
|
|
|
hashtopolis macOS 10.15.2 |
Posted by: Witcher Merlin - 10-10-2020, 03:29 PM - Forum: Howto
- No Replies
|
 |
hello everyone.
How can configure apache2 and install hashtopolis into Mac OS?
I didn't find good faq and infrormation about it.
I did first step configuration of apache2 in my Mac and activate PHP 7.3.11
How can I make good procedure of all of that?
|
|
|
How to use User API? |
Posted by: raptork - 10-09-2020, 04:41 AM - Forum: Howto
- Replies (2)
|
 |
I am curious how to use the User API.
The first question is what is the URL of the User API. Is it /api/user.php ?
I try to test the functionality with GET and POST request, but the response is the same:
Code: {"section":"INV","request":"INV","response":"ERROR","message":"Invalid user api query!"}
The GET request is:
Code: https://example.com/hashtopolis/api/user.php?section=test&request=connection
which I refer to the documentation at: https://github.com/s3inlc/hashtopolis/bl...er-api.pdf
The POST request is similar, which I call it via PHP:
Code: <?php
header('Content-Type: text/plain');
$data = array(
"section" => "test",
"request" => "connection"
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://example.com/hashtopolis/api/user.php");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Possible attack hole: Man In The Middle
$response = curl_exec($ch);
var_dump($response);
?>
Identical response via POST. So what did I miss?
|
|
|
Agent crashed in macOS 10.15.6 |
Posted by: raptork - 09-17-2020, 04:38 AM - Forum: Problems
- Replies (22)
|
 |
Hello Hashtopolis community,
I am quite new to this, and I'm trying to learn how to use the platform. I successfully setup the platform in an Ubuntu 16.02 server.
Hashcat 6.1.1 is installed in the Ubuntu server as well.
When I download an agent and run the "python3 hashtopolis.zip" in my macOS 10.15.6 with Python 3.8.5 (the latest version of psutil and requests are installed via pip), the following errors occurred after I entered a new voucher code and the API url:
Code: % python3 hashtopolis.zip
Found existing lock.pid, checking if python process is running...
Ignoring lock.pid file because PID is not existent anymore or not running python!
Starting client 's3-python-0.6.0.10'...
Collecting agent data...
2020-09-17 12:20:08.362 system_profiler[25306:7407041] SystemInfo-AccessoryFW from dict - Raptor’s Keyboard = 0x0050
2020-09-17 12:20:08.366 system_profiler[25306:7407041] SystemInfo-AccessoryFW from dict - Raptor’s Mouse = 0x0306
2020-09-17 12:20:08.371 system_profiler[25306:7407041] SystemInfo-AccessoryFW - Raptor’s Apple Watch: no firmware version info available
2020-09-17 12:20:08.371 system_profiler[25306:7407041] SystemInfo-AccessoryFW - rPhoneXR: no firmware version info available
2020-09-17 12:20:12.567 system_profiler[25338:7407254] SPUSBDevice: IOCreatePlugInInterfaceForService failed 0xe00002be
2020-09-17 12:20:12.567 system_profiler[25338:7407254] SPUSBDevice: IOCreatePlugInInterfaceForService failed 0xe00002be
Login successful!
Hashtopolis Server version: 0.12.0 (commit a247df9 branch master)
Client is up-to-date!
Got task with id: 1
Downloading: [=======================================================================================]
Client is up-to-date!
Got cracker binary type hashcat
/bin/sh: ./hashcat64.osx: No such file or directory
Error during version detection: Command './hashcat64.osx --version' returned non-zero exit status 127.
Traceback (most recent call last):
File "/usr/local/Cellar/python@3.8/3.8.5/Frameworks/Python.framework/Versions/3.8/lib/python3.8/runpy.py", line 194, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/usr/local/Cellar/python@3.8/3.8.5/Frameworks/Python.framework/Versions/3.8/lib/python3.8/runpy.py", line 87, in _run_code
exec(code, run_globals)
File "hashtopolis.zip/__main__.py", line 343, in <module>
File "hashtopolis.zip/__main__.py", line 198, in loop
File "hashtopolis.zip/htpclient/hashcat_cracker.py", line 50, in __init__
AttributeError: 'str' object has no attribute 'decode'
How can I solve this problem?
|
|
|
No task available! |
Posted by: jepunband - 09-11-2020, 05:22 AM - Forum: Hashtopolis
- Replies (1)
|
 |
hi i have setup hashtopolis-server. Configured agent, tasks, hashlist,files. downloaded hashtopolis.zip and get it connected to the api url and voucher.
so what steps am i missing now and where do i edit it? as i am getting "No task available!", on agent system after connecting.
is there a video tutorial, as the last video tutorial on YouTube is already deprecated.
|
|
|
Two or Four |
Posted by: pgsabol - 09-09-2020, 06:28 PM - Forum: Hashtopolis
- Replies (1)
|
 |
Given a choice of two RTX 3090s or four RTX 3080s, which would produce the most throughput on hashing? I can't seem to find any specific articles on this because I'm guessing no one has beta tested that yet. Anyone have any metrics yet?
|
|
|
problems with hastopolis working on another computer |
Posted by: Alex123 - 08-18-2020, 08:00 PM - Forum: Problems
- No Replies
|
 |
Hello! I have Hastopolis installed on my home computer in a virtual machine. Works great here. I transferred the virtual machine image to my work computer and the problem came up. When I access the hashtopolis server and enter username and password on the login page, nothing happens, not even an error reported. Please help me to solve this problem.
version of the Hashtopolis 0.12.0
version of the host operating system on the home and work computer Windows 10
version of the guest operating system on the home and work computer Lubuntu 19.10
version of the virtual machine on the home and work computer VirtualBox 6.1.8
|
|
|
Unable to crack |
Posted by: NoOlu8SQJZomAeryT - 08-12-2020, 04:23 PM - Forum: Problems
- Replies (2)
|
 |
Hashtopolis works perfectly with small hashlist but when I used a bigger one (10M), hashtopolis is stuck at task id message btw hashlist has been uploaded correctly I can see the number of hashes left. Any idea ?
Starting client 's3-python-0.6.0.10'...
Collecting agent data...
Login successful!
Hashtopolis Server version: 0.12.0 (commit a247df9 branch master)
Client is up-to-date!
Got task with id: 1
|
|
|
|