Author

Topic: [FREE] BitcoinDice 1.0 - Free Open Source Dice Script - Run Your Own Casino (Read 13933 times)

copper member
Activity: 70
Merit: 1
Is this safe? I would like to use it.

How can I use it? do i install it on my host? help!  Roll Eyes
member
Activity: 98
Merit: 10
Hello Everyone,

We have released BitcoinDice 1.0 - Free to use and free to distribute, You can download it from github, Please read the readme.md for instructions on how to install (This is very important)

https://github.com/felinegambler/BitcoinDice

The Script has many features, including chat, statistics, admin panel, adjustable house edge and is provably fair.

Please see the four images here - http://imgur.com/3FZqrdt,b5dUwEc,LoifRxZ,rrT5kU1#0


Good Luck and have fun running your own casino!
The theme design is very, very, very similar to PrimeDice's theme. Wink

To be fair, they ripped it off from another guy who ripped it off of PD. Some guy called johnny sells scripts of a site similar to PD for 1btc and this guy appears to have that script and is simply offering it for free (perhaps with a backdoor?)

stunna but your prime dice site code is free???

maybee the basic function?Huh

thanks
member
Activity: 98
Merit: 10
Working on cleaning it.

waiting for your release vortex!!!

just a question:

did you found something like backdoor???

member
Activity: 112
Merit: 10
Any good bitcoin enthusiast,remove its backdoor and make it open source stuff voluntarily,

So that U can make money at the cost of other's sweat ?

this
elm
legendary
Activity: 1050
Merit: 1000
Not only OP's version may contain additional backdoors but the original coindice script contains many bugs and I would suggest to stay away.

from Johnny?
hero member
Activity: 560
Merit: 500
Not only OP's version may contain additional backdoors but the original coindice script contains many bugs and I would suggest to stay away.

Yeah but you can modify it and check for vulnerabilitys so that it should be clean.
sr. member
Activity: 322
Merit: 250
We at MultiDice Treat You Like a Winner
Not only OP's version may contain additional backdoors but the original coindice script contains many bugs and I would suggest to stay away.
legendary
Activity: 1051
Merit: 1000
https://r.honeygain.me/XEDDM2B07C
Hello Everyone,

We have released BitcoinDice 1.0 - Free to use and free to distribute, You can download it from github, Please read the readme.md for instructions on how to install (This is very important)

https://github.com/felinegambler/BitcoinDice

The Script has many features, including chat, statistics, admin panel, adjustable house edge and is provably fair.

Please see the four images here - http://imgur.com/3FZqrdt,b5dUwEc,LoifRxZ,rrT5kU1#0


Good Luck and have fun running your own casino!

how to install Bitcoin Wallet on a server?

If you don't even know how to install a wallet on to a server....you should not even be looking at hosting anything even remotely related to this... Roll Eyes
member
Activity: 102
Merit: 250
Anyone using this? It looks good!
Maybe, but it is still stolen code..
newbie
Activity: 4
Merit: 0
Anyone using this? It looks good!
sr. member
Activity: 700
Merit: 250
Hello Everyone,

We have released BitcoinDice 1.0 - Free to use and free to distribute, You can download it from github, Please read the readme.md for instructions on how to install (This is very important)

https://github.com/felinegambler/BitcoinDice

The Script has many features, including chat, statistics, admin panel, adjustable house edge and is provably fair.

Please see the four images here - http://imgur.com/3FZqrdt,b5dUwEc,LoifRxZ,rrT5kU1#0


Good Luck and have fun running your own casino!

how to install Bitcoin Wallet on a server?
sr. member
Activity: 700
Merit: 250
sr. member
Activity: 700
Merit: 250
anyone know where I can give the link to read
sr. member
Activity: 700
Merit: 250
have any questions!
1 Which hosting is better to run the project?
2 How to install bitcoin wallet hosting and connect it to the site?
hero member
Activity: 603
Merit: 500
So I went through and saw this entered as

INSERT INTO `admins` (`id`, `username`, `passwd`) VALUES
(1,   'admin',   '21232f297a57a5a743894a0e4a801fc3');

For part of the SQL when installing

I guess that is indeed for the admin and that you just change the password and username. It would make sense to have this when installing.

member
Activity: 84
Merit: 10
Anyone has the clean version? Please share it.
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
Working on cleaning it.

When you rip through it, pm me with it and ill scan it again to make sure it is clean. A second set of eyes can save a lot of problems in the future.
I will.
elm
legendary
Activity: 1050
Merit: 1000
Hello Everyone,

We have released BitcoinDice 1.0 - Free to use and free to distribute, You can download it from github, Please read the readme.md for instructions on how to install (This is very important)

https://github.com/felinegambler/BitcoinDice

The Script has many features, including chat, statistics, admin panel, adjustable house edge and is provably fair.

Please see the four images here - http://imgur.com/3FZqrdt,b5dUwEc,LoifRxZ,rrT5kU1#0


Good Luck and have fun running your own casino!

who is we? and why are you giving it for free? sorry but that stinks
legendary
Activity: 1051
Merit: 1000
https://r.honeygain.me/XEDDM2B07C
Working on cleaning it.

When you rip through it, pm me with it and ill scan it again to make sure it is clean. A second set of eyes can save a lot of problems in the future.
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?
Using ajax caling from a mysql database, its not hard for realtime bets. when the bet is placed it instantly goes into the mysql database and ever second or so the bet table is updated. Thats how my website goes anyways, I don't know about this one.

But, I read here that using Ajax for a dice site may make things terrible.

Well, for example pocketdice.io sends a PHPSESSID cookie, so it's safe to say they use PHP ( https://pocketdice.io/index.php works too Wink). Besides that, you can easily see the socket.io socket.


A socket is an open connection between the client (browser) and server with bidirectional communication. If you make a bet, you send the info through the socket (and you get the result) and if others bet you get the bets from there. So it's all real-time, you only connect once. There are different libraries/servers for this, Socket.io is a popular one made in node.js. Perfect for a dice site.

An alternative is indeed getting new data with AJAX requests. With that, the browser would make a connection/request every x seconds to see if there are new bets. Obviously for a dice site this would be pretty terrible and give big lag and other problems. However AJAX is useful for other purposes.
Haven't gotten to bet-making.

Chat uses ajax though.



Is chat using a conventional DB or a flat file for conversation storage ?
MySQL.

Edit:

Proud that I answered in 3 minutes. Hell yea. Roll Eyes
legendary
Activity: 1662
Merit: 1050
Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?
Using ajax caling from a mysql database, its not hard for realtime bets. when the bet is placed it instantly goes into the mysql database and ever second or so the bet table is updated. Thats how my website goes anyways, I don't know about this one.

But, I read here that using Ajax for a dice site may make things terrible.

Well, for example pocketdice.io sends a PHPSESSID cookie, so it's safe to say they use PHP ( https://pocketdice.io/index.php works too Wink). Besides that, you can easily see the socket.io socket.


A socket is an open connection between the client (browser) and server with bidirectional communication. If you make a bet, you send the info through the socket (and you get the result) and if others bet you get the bets from there. So it's all real-time, you only connect once. There are different libraries/servers for this, Socket.io is a popular one made in node.js. Perfect for a dice site.

An alternative is indeed getting new data with AJAX requests. With that, the browser would make a connection/request every x seconds to see if there are new bets. Obviously for a dice site this would be pretty terrible and give big lag and other problems. However AJAX is useful for other purposes.
Haven't gotten to bet-making.

Chat uses ajax though.



Is chat using a conventional DB or a flat file for conversation storage ?
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?
Using ajax caling from a mysql database, its not hard for realtime bets. when the bet is placed it instantly goes into the mysql database and ever second or so the bet table is updated. Thats how my website goes anyways, I don't know about this one.

But, I read here that using Ajax for a dice site may make things terrible.

Well, for example pocketdice.io sends a PHPSESSID cookie, so it's safe to say they use PHP ( https://pocketdice.io/index.php works too Wink). Besides that, you can easily see the socket.io socket.


A socket is an open connection between the client (browser) and server with bidirectional communication. If you make a bet, you send the info through the socket (and you get the result) and if others bet you get the bets from there. So it's all real-time, you only connect once. There are different libraries/servers for this, Socket.io is a popular one made in node.js. Perfect for a dice site.

An alternative is indeed getting new data with AJAX requests. With that, the browser would make a connection/request every x seconds to see if there are new bets. Obviously for a dice site this would be pretty terrible and give big lag and other problems. However AJAX is useful for other purposes.
Haven't gotten to bet-making.

Chat uses ajax though.

legendary
Activity: 1662
Merit: 1050
Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?
Using ajax caling from a mysql database, its not hard for realtime bets. when the bet is placed it instantly goes into the mysql database and ever second or so the bet table is updated. Thats how my website goes anyways, I don't know about this one.

But, I read here that using Ajax for a dice site may make things terrible.

Well, for example pocketdice.io sends a PHPSESSID cookie, so it's safe to say they use PHP ( https://pocketdice.io/index.php works too Wink). Besides that, you can easily see the socket.io socket.


A socket is an open connection between the client (browser) and server with bidirectional communication. If you make a bet, you send the info through the socket (and you get the result) and if others bet you get the bets from there. So it's all real-time, you only connect once. There are different libraries/servers for this, Socket.io is a popular one made in node.js. Perfect for a dice site.

An alternative is indeed getting new data with AJAX requests. With that, the browser would make a connection/request every x seconds to see if there are new bets. Obviously for a dice site this would be pretty terrible and give big lag and other problems. However AJAX is useful for other purposes.
hero member
Activity: 588
Merit: 500
Get ready for PrimeDice Sig Campaign!
Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?
Using ajax caling from a mysql database, its not hard for realtime bets. when the bet is placed it instantly goes into the mysql database and ever second or so the bet table is updated. Thats how my website goes anyways, I don't know about this one.
legendary
Activity: 1662
Merit: 1050
Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
Working on cleaning it.
newbie
Activity: 21
Merit: 0
Just support the developer who made it. Someone already pointed out that this was taken from someone else.

legendary
Activity: 2394
Merit: 1216
The revolution will be digital
Any good bitcoin enthusiast,remove its backdoor and make it open source stuff voluntarily,

So that U can make money at the cost of other's sweat ?
legendary
Activity: 1050
Merit: 1000
Hello Everyone,

We have released BitcoinDice 1.0 - Free to use and free to distribute, You can download it from github, Please read the readme.md for instructions on how to install (This is very important)

https://github.com/felinegambler/BitcoinDice

The Script has many features, including chat, statistics, admin panel, adjustable house edge and is provably fair.

Please see the four images here - http://imgur.com/3FZqrdt,b5dUwEc,LoifRxZ,rrT5kU1#0


Good Luck and have fun running your own casino!
The theme design is very, very, very similar to PrimeDice's theme. Wink

To be fair, they ripped it off from another guy who ripped it off of PD. Some guy called johnny sells scripts of a site similar to PD for 1btc and this guy appears to have that script and is simply offering it for free (perhaps with a backdoor?)

There most likely is to be a backdoor with the script, I wouldn't recommend you using a free dice script if you aren't able to pay for one.
newbie
Activity: 21
Merit: 0
The best idea would just be to buy it. If you're planning on making money from it then you might as well support who ever made and and make the investment to actually buy it.
newbie
Activity: 35
Merit: 0
If you want a backdoor free version that is supported I suggest you go buy CoinDice, it supports altcoins also.
legendary
Activity: 1051
Merit: 1000
https://r.honeygain.me/XEDDM2B07C
Can this be used for other coins?

Yes it can if you know a little bit of code.

do you know how to code?


I do, but not quite sure if I want to plough through this source to root out all of the potential threats and then build altcoin code on top. Maybe if you can find a confirmed clean source, I might be able to help Smiley
hero member
Activity: 490
Merit: 500
37iGtdUJc2xXTDkw5TQZJQX1Wb98gSLYVP
Can this be used for other coins?

Yes it can if you know a little bit of code.

do you know how to code?
legendary
Activity: 1051
Merit: 1000
https://r.honeygain.me/XEDDM2B07C
Can this be used for other coins?

Yes it can if you know a little bit of code.
hero member
Activity: 490
Merit: 500
37iGtdUJc2xXTDkw5TQZJQX1Wb98gSLYVP
Can this be used for other coins?
newbie
Activity: 14
Merit: 0
hero member
Activity: 896
Merit: 1000
Any good bitcoin enthusiast,remove its backdoor and make it open source stuff voluntarily,
hero member
Activity: 588
Merit: 500
Get ready for PrimeDice Sig Campaign!
This has to be to good to be true... Pigs might fly this script is clean
This is high risk high reward. Fixing it up would result in a great script for free. Missing a backdoor could result in you losing your btc.
legendary
Activity: 966
Merit: 1000
In holiday we trust
This has to be to good to be true... Pigs might fly this script is clean
legendary
Activity: 1512
Merit: 1057
SpacePirate.io
The theme design is very, very, very similar to PrimeDice's theme. Wink

HAhahaha wow that is pretty much primedice.  There's another dice script floating out there too somewhere with a backdoor. I'd be interested to know the motivations from OP on releasing it as open source? As a newbie releasing source, it tends to throw up everyone's warning due to all the scams going on right now.

see examples:
https://bitcointalksearch.org/topic/coindice-script-is-a-big-scamm-dont-buy-from-them-they-stollen-my-btc-516394
https://bitcointalksearch.org/topic/bitdice-always-wanted-to-make-your-own-bitcoin-dice-betting-site-free-381396



newbie
Activity: 14
Merit: 0
I did remove my address from it but some how it reverted...
But as you say it is a simple fix..
I understand people being wary but anyone with half a brain can make the changes they need and see this is a simple legit item
sr. member
Activity: 252
Merit: 250
This one has a backdoor in it. I examined the code. Beware.
Could you show us where? We already found one part of the code where the deposit address is the OPs address, meaning that deposits will go to him, but that is fixable.
It has the same backdoor as CoinDice. And that part also. It has the same codes with it. Except for some changes (Address values etc...)
hero member
Activity: 588
Merit: 500
Get ready for PrimeDice Sig Campaign!
This one has a backdoor in it. I examined the code. Beware.
Could you show us where? We already found one part of the code where the deposit address is the OPs address, meaning that deposits will go to him, but that is fixable.
sr. member
Activity: 252
Merit: 250
This one has a backdoor in it. I examined the code. Beware.
hero member
Activity: 683
Merit: 500
So I went through and saw this entered as

Receiving Address... Maybe that's a way for the script to take whatever balance is in the hotwallet or whatever, and send it there?
Echo "1B91svQchkzkykRmYcJJQorGZqN2A813tS"

If not careful and changing certain entities... It also has

INSERT INTO `admins` (`id`, `username`, `passwd`) VALUES
(1,   'admin',   '21232f297a57a5a743894a0e4a801fc3');


For part of the SQL when installing
full member
Activity: 151
Merit: 100


To be fair, they ripped it off from another guy who ripped it off of PD. Some guy called johnny sells scripts of a site similar to PD for 1btc and this guy appears to have that script and is simply offering it for free (perhaps with a backdoor?)

Well, we will have to wait for a good programmer to check the code.
legendary
Activity: 3192
Merit: 1279
Primedice.com, Stake.com
Hello Everyone,

We have released BitcoinDice 1.0 - Free to use and free to distribute, You can download it from github, Please read the readme.md for instructions on how to install (This is very important)

https://github.com/felinegambler/BitcoinDice

The Script has many features, including chat, statistics, admin panel, adjustable house edge and is provably fair.

Please see the four images here - http://imgur.com/3FZqrdt,b5dUwEc,LoifRxZ,rrT5kU1#0


Good Luck and have fun running your own casino!
The theme design is very, very, very similar to PrimeDice's theme. Wink

To be fair, they ripped it off from another guy who ripped it off of PD. Some guy called johnny sells scripts of a site similar to PD for 1btc and this guy appears to have that script and is simply offering it for free (perhaps with a backdoor?)
hero member
Activity: 980
Merit: 1000
www.DonateMedia.org
Hello Everyone,

We have released BitcoinDice 1.0 - Free to use and free to distribute, You can download it from github, Please read the readme.md for instructions on how to install (This is very important)

https://github.com/felinegambler/BitcoinDice

The Script has many features, including chat, statistics, admin panel, adjustable house edge and is provably fair.

Please see the four images here - http://imgur.com/3FZqrdt,b5dUwEc,LoifRxZ,rrT5kU1#0


Good Luck and have fun running your own casino!
The theme design is very, very, very similar to PrimeDice's theme. Wink
legendary
Activity: 1190
Merit: 1000
no need to carry heavy money bags anymore
Hmm, sounds good. But let's wait for some trusted programmer to go through and confirm there's no back door or something.
No offence.

newbie
Activity: 14
Merit: 0
Hello Everyone,

We have released BitcoinDice 1.0 - Free to use and free to distribute, You can download it from github, Please read the readme.md for instructions on how to install (This is very important)

https://github.com/felinegambler/BitcoinDice

The Script has many features, including chat, statistics, admin panel, adjustable house edge and is provably fair.

Please see the four images here - http://imgur.com/3FZqrdt,b5dUwEc,LoifRxZ,rrT5kU1#0


Good Luck and have fun running your own casino!
Jump to: