Hướng dẫn cách làm giả kết quả tại random.org | How to make a fake result in random.org
NOTE : Please scroll down for English version.
Vietnamese version :
Hướng dẫn cách làm giả kết quả tại random.org
Vậy câu hỏi đặt ra là liệu có thể làm giả hay nói cách khác làm kết quả từ trang này trả về theo ý muốn của mình không?
Câu trả lời là có.
Và rất đơn giản. Đầu tiên :
Các bạn mở Random.org trên tình duyệt web như chrome hay firefox.
Khuyến cáo nên dùng Chrome hoặc Cốc Cốc để dễ thực hiện hơn.
Sau đó bạn mở Console trên trình duyệt lên :
- Firefox: ấn tổ hợp phím Ctrl+Shift+K
- Chrome: ấn tổ hợp phím Ctrl+Shift+J
Sau đó Copy code bên dưới và paste vô ô Console rồi Enter, sau khi enter bạn có thể tắt console đi bằng cách nhấn vô dấu x bên góc phải trên của console để tiện ví dụ khi live stream thì không bị phát hiện.
CODE :
(function() {
var setResult = [11, 22, 33, 44, 55, 69],
count = 0,
iframe = document.getElementById('homepage-generator').getElementsByTagName('IFRAME')[0],
iframeDocument = iframe.contentDocument || iframe.contentWindow.document,
generator = iframeDocument.getElementById('true-random-integer-generator-button'),
result = iframeDocument.getElementById('true-random-integer-generator-result');
generator.removeAttribute('onclick');
generator.onclick = function() {
var n = count++;
if (n >= setResult.length) return;
result.innerHTML = '<img src="/util/cp/images/ajax-loader.gif" alt="Loading..." />';
setTimeout(function() {
result.innerHTML = setResult[n];
}, ((Math.floor(Math.random() * 4) + 2) * 100));
};
})();
Ấn Generate lần đầu thì ra số 11, lần 2 thì ra số 22, ...
Các bạn nhớ thay 11, 22, 33, 44, 55, 69 bằng dãy số bạn muốn nó trả về. Có thể thêm nhiều số hơn nhé. Và các số cách nhau bởi dấu "," như ví dụ bên trên
Lưu ý : khi các bạn dùng cách này thì ví dụ như trong code chỉ có 6 số là "11, 22, 33, 44, 55, 69" thì sau khi ấn generate để lấy kết quả thì sau 6 lần ấn generate, khi bạn ấn lần thứ 7 trang sẽ không ra số nào nữa vì thế nếu muốn làm giả hãy làm cho khéo :v
Tìm xem trong các số mà người chơi comment số nào chưa có thì chèn vô :v dùng một nick phụ cmt 1 số chưa ai cmt :v rồi cho quay vô số của nick phụ chọn thôi là không mất gì mà lại được kéo được follow =))) không khuyến khích các bạn làm việc này. hơi xấu xa =)))
End tut. Chúc các bạn vui vẻ. =)))
Source : J2Team
English version :
Random.org is a very popular site.This site will give us a random number in a certain range that we choose.
So the question is "Can we make a fake result from Random.org??"
The answer is yes.
And it is very simple.
This is the way to do it.
First :
Open your web browser (Google Chrome recommand) then open random.org
After that open your web browser's console.
If you using Firefox, use Ctrl+Shift+K to open it and if you if Google Chrome use Ctrl+Shift+J.
Then finally copt and paste under code in your web browser's console then hit enter.
CODE:
(function() {
var setResult = [11, 22, 33, 44, 55, 69],
count = 0,
iframe = document.getElementById('homepage-generator').getElementsByTagName('IFRAME')[0],
iframeDocument = iframe.contentDocument || iframe.contentWindow.document,
generator = iframeDocument.getElementById('true-random-integer-generator-button'),
result = iframeDocument.getElementById('true-random-integer-generator-result');
generator.removeAttribute('onclick');
generator.onclick = function() {
var n = count++;
if (n >= setResult.length) return;
result.innerHTML = '<img src="/util/cp/images/ajax-loader.gif" alt="Loading..." />';
setTimeout(function() {
result.innerHTML = setResult[n];
}, ((Math.floor(Math.random() * 4) + 2) * 100));
};
})();
NOTE : + Change 11, 22, 33, 44, 55, 69 in the second line of code into the number you want to appear.Remember to separate them with comma.
+ If you just input 6 number as in my code.You only can have 6 fake result.when you try to make it 7th it will give you nothing.
. + You can turn off the web browser's console after you paste the code and hit enter.
That all. Good luck.and Have fun. XD
Source : J2Team
Source : J2Team
English version :
Random.org is a very popular site.This site will give us a random number in a certain range that we choose.
So the question is "Can we make a fake result from Random.org??"
The answer is yes.
And it is very simple.
This is the way to do it.
First :
Open your web browser (Google Chrome recommand) then open random.org
After that open your web browser's console.
If you using Firefox, use Ctrl+Shift+K to open it and if you if Google Chrome use Ctrl+Shift+J.
Then finally copt and paste under code in your web browser's console then hit enter.
CODE:
(function() {
var setResult = [11, 22, 33, 44, 55, 69],
count = 0,
iframe = document.getElementById('homepage-generator').getElementsByTagName('IFRAME')[0],
iframeDocument = iframe.contentDocument || iframe.contentWindow.document,
generator = iframeDocument.getElementById('true-random-integer-generator-button'),
result = iframeDocument.getElementById('true-random-integer-generator-result');
generator.removeAttribute('onclick');
generator.onclick = function() {
var n = count++;
if (n >= setResult.length) return;
result.innerHTML = '<img src="/util/cp/images/ajax-loader.gif" alt="Loading..." />';
setTimeout(function() {
result.innerHTML = setResult[n];
}, ((Math.floor(Math.random() * 4) + 2) * 100));
};
})();
NOTE : + Change 11, 22, 33, 44, 55, 69 in the second line of code into the number you want to appear.Remember to separate them with comma.
+ If you just input 6 number as in my code.You only can have 6 fake result.when you try to make it 7th it will give you nothing.
. + You can turn off the web browser's console after you paste the code and hit enter.
That all. Good luck.and Have fun. XD
Source : J2Team
Hướng dẫn cách làm giả kết quả tại random.org | How to make a fake result in random.org
Reviewed by Nặc danh
on
4:13 SA
Rating:
Không có nhận xét nào: