You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

iptreader

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iptreader

iptreader is a node.js library to read and change the license of IPT-files (Autodesk Inventor files)

0.2.0
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

Autodesk Inventor License Reader

iptreader is a node.js library to read and change the license of IPT-files (Autodesk Inventor files).

The license may not be acurate as this is all done using reverse engineering.

Install

You can install iptreader using the Node Package Manager (npm):

npm install iptreader

Simple example

var iptreader = require('iptreader');

var someLicense = [
    'Name',
    '0x00000000',
    '0x00000000',
    '0x00000000',
    '0x00000000',
    'Some Buildnumber'
];


fs.readFile('./original.ipt', function (err, data) {
    if (err) return console.log(err);

    var currentLicense = iptreader.getLicense(data);
    console.log('currentLicense', currentLicense);

    console.log('setting new licence:', someLicense);
    var newData = iptreader.setLicense(data, someLicense);

    fs.writeFile('./new.ipt', newData, function (err) {
        if(err) return console.log(err);
        console.log('done');
    });
});

FAQs

Package last updated on 18 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts