STAY TUNED

~ COMING SOON ~

~ NIT Network Solution ~

Management, Controller, Security, Application, Architecture, Setup and Deploy

~ NIT Cyber Security Solution ~

Prevent security breaches starts with exploits detection and build up protection before you connect.

~ NIT Arduino Hacks ~

Digital controller had been applied widely in this era. It playing maih role in IoT handling sensors and actuators with programmable decision making as well as Artificial Intelligence.

HIDDEN_SEO

CSS_OVERWRITE

HIDDEN_MUSIC

Showing posts with label hacks. Show all posts
Showing posts with label hacks. Show all posts

WEB 2 PDF

Here I will Guide how to Print Web To PDF using FREE Resources.


There are 2 things needed to be installed.
1. nodejs , seek for "Installation Steps" and follow everything.
2. puppeteer, first you need to open "Command Prompt" then type

mkdir puppeteer
cd puppeteer
npm install puppeteer

3. Restart ur PC.

4. copy paste the following code and paste it in a notepad then save it as "nit.js" in the puppeteer folder that you have created.


const puppeteer = require('puppeteer');  //library of the core
(async () => {
console.log("1/4 opening browser");
 const browser = await puppeteer.launch({ headless: true });  
console.log("2/4 opening page");
  const page = await browser.newPage();
await page.goto(`https://www.google.com`, {waitUntil: 'load',timeout: 0});
console.log("3/4 printing page");
  await page.pdf({path: 'hn.pdf', format: 'A4'});
  await browser.close();
console.log("4/4 completed");
})();


5. Open your command prompt and enter the following. 

cd puppeteer
node nit.js

Bulk Solution.

1. Copy paste the following to a notepad and save it as "test.csv" in the puppeteer folder.

https://www.google.com,https://www.youtube.com,https://www.facebook.com

2. copy paste the following code and paste it in a notepad then save it as "nit.js" in the puppeteer folder that you have created.

const puppeteer = require('puppeteer');  //library of the core
const fs = require('fs'); // library of file read 

// read from csv file and convert to data
var data = fs.readFileSync('test.csv')
    .toString() // convert Buffer to string
    .split('\n') // split string to lines
    .map(e => e.trim()) // remove white spaces for each line
    .map(e => e.split(',').map(e => e.trim())); // split each line to array

var arr=data[0]; 


printpdf(arr);



async function printpdf(arr) {
for (let i = 0; i < arr.length; i++) {

        const url = arr[i];
try {
console.log("1/4 opening browser");
const browser = await puppeteer.launch({ headless: true });
console.log("2/4 opening page");
const page = await browser.newPage();
await page.goto(`${url}`, {waitUntil: 'load',timeout: 0});
console.log("3/4 printing "+i+" out of "+ (arr.length-1));
const pdf = await page.pdf({path: i+'.pdf', format: 'A4' });
await browser.close();
console.log("4/4 closing page");
} catch(err) {
  console.log(err);

}
    }
 
  console.log("Completed");
}

5. Open your command prompt and enter the following then pdf will be generated in the same folder.

cd puppeteer
node nit.js

Want To know more? 

Leave a message to us via the messenger


Create QRcode in 1 minute

Previously we have shown how malicious can QR code be. Now let's see how easily a QR code can be created by using our editor made platform.

First of all, let's go to QRcode generator website. Depends on your need and fill in the information required in the DATA section and click create. Congrats you have your QRcode done.

Besides, you can also apply our API link which you can just parse the data in URL format just like below:

https://joshlrt.com/qr/?data=JOSHLRT%20QR%20MAKER

As you can see, you can append what ever type of data you need in the URL after the data=, the QRcode will be produced.

NIT FOR ALL - FACEBOOK
Please stay with us, we will show you how awesome can QRcode be with power redirection of DATA from one place to another.
Feel free to share this article around and do like & follow at our Facebook page. NIT FOR ALL - FACEBOOK
OCR ~ Optical Character Recognition & API Introduction

E-Wallet safe?

There are many E- wallet applications that are well known in Malaysia. Like Wechat, AliPay, Razer Pay, GrabPay, touch n Go and more. Soon Malaysia will be a cashless country,  we have to know ways to be more precaution before start using it. Application itself is secured but the one not secured is you. You are the only firewall that is easy to be bypass by the bad guy. This is because there are many baits outsite the world where people are not realizing it.

People always fall into the trap whenever they see huge amount of durian dropping form the sky. But they couldn't remember that durian only drop from the tree. There are many traps in WeChat that happened in China, belows are what they normally do before & after u scan the QR code.


Before

  • Attract user attention with angpao that give benefits.
  • Replacing legitimate merchants’ codes with malevolent copies, fraudsters can gain access to consumers’ data and even raid their bank account.

After

  • Requiring user to input personal information. (ID number and bank information.)
  • Requiring user to login to your account. (Which actually getting your id and password)
  • Requiring user to enter pin number to receive benefits. (Only Sender required to enter pin number.)
  • Sharing for giveaway or benefits. (User won't lost any but please put it in mind that if someone falled into this trap, it is because of you that shared it.)

Prevention

  • Keep in mind that Wechat angpao is with a limit of USD$30
  • Do not enter any password / pin
  • Do check into the internet before scanning any QR code having giveaway rewards.
  • Please do take it in mind that before scanning the QR code. Do double check whether there is another piece sticked on top of it. 
  • Do not share any fake benefits, post it in group to rise the awareness instead.
  • Make sure that it redirect you to the correct place.
  • Use Secure QR-Code scanner Kaspersky Qr Scanner

What will happened if scanned a fake QR-Code

These malevolent QR-Codes lead users to malicious websites where users are required to key in personal information. This information is then used to send phishing emails filled with malwares. In the worst case smartphone with viruses transmitted to steal money from the victim's mobile wallet, or ransomware where data is encrypted for a ransom.


E-Wallet safe?
NIT FOR ALL - FACEBOOK
Please stay with us, see you in the coming post. Feel free to share this article around and do like & follow at our Facebook page. 

Music Embedded with YouTube

Get embeded URL from YouTube



Click into Share button and choose Embed. From there customize your configuration and copy the URL.




Modify the direct URL

Paste it into ur javascript gadget. Then start modify the code. at the end of the url u can add several parameter. The parameter can be found in iframe player parameter. Add to

Embed MP3 Hosted on Google Drive

Music embed everywhere around the websites, portfolio, blog and etc.. But to securely playing or looping a music from a official publisher, it had to through embed which makes you share and play the media legally under a public site or private site.

Step 1 - Upload MP3 files to a folder in Google Drive

Create a folder in your Google Drive and upload mp3 file.

Step 2 - Share the MP3 and get the direct URL

Make sure that it is open to public so that everyone can open and view it.

Step 3 - Modify the direct URL

The Direct URL will look something like this https://drive.google.com/file/d/XXXXXXXXXX/view?usp=sharing XXXXXXXXXX is the ID of your MP3 file. Then you can obtain a direct link to this audio by changing it to http://docs.google.com/uc?export=open&id=XXXXXXXXX

<audio> <source src="http://docs.google.com/uc?export=open&id=XXXXXXXXXXXX> </source> </audio>

Step 5 - Finalize

There are attributes that can make your life easier.
1. autoplay

<audio autoplay>... </audio>
2. controls
<audio controls>... </audio>
3. loop
<audio loop> ... </audio>
You can combine it to make it like this
<audio autoplay controls loop>... </audio>
Alternative using YouTube.

p/s It is not suitable for large amount of viewer.

google drive will give notice like below