
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
ng-at-internet
Advanced tools
AT Internet tracking js library wrapper for AngularJS.
$ bower install ng-at-internet --save
Available soon
$ git clone https://github.com/ovh-ux/ng-at-internet.git
$ cd ng-at-internet
$ npm install
$ bower install
Before using this component please make sure that ATInternet JS library : smarttag.js is linked in your project.
<script src="angular.js"></script>
<script src="smarttag-yourproject.js"></script>
<script src="ng-at-internet.js"></script>
Please see : http://developers.atinternet-solutions.com/accueil/
Example simple provider configuration
app.config(["atInternetProvider", function(provider) {
provider.setEnabled(true); // enable tracking
//provider.setDebug(true);
provider.setDefaults({ level2: "1"}); // it is recommended to specify the level2 attribute as a default value
// since it is global to your project and it must be send allong with
// every tracking data
}])
Please note that the level2 attribute must be your project ID ; configured in ATInternet manager.
Exemple provider configuration with identifiedVisitor set.
app.config(["atInternetProvider", function(provider) {
provider.setEnabled(true); // enable tracking
//provider.setDebug(true);
provider.setDefaults({ level2: "1",
visitorId: "123"
});
}])
Notice that visitorId is optional and set identifiedVisitor.id ATInternet Tag.
Example of tracking a single page.
atInternet.trackPage({
name: "my-page", // page name
level2: "1", // (optional) if not configured in defaults you must specify your project id
visitorId: "123" // (optional) set identifiedVisitor.id sent with each hit
});
Example of tracking a click action.
atInternet.trackClick({
name: "my-click", // name of action
type: "action", // event type (optional) Possible values : action/navigation/download/exit
level2: "1", // (optional) if not configured in defaults you must specify your project id
visitorId: "123" // (optional) set identifiedVisitor.id sent with each hit
});
Tracking using the directive :
Attributes
track-on
: event to track (click, onFinish, onchange, etc)track-name
: Name of action (optional) Id will be used if absenttrack-type
: event type (optional) Possible values : action/navigation/download/exit<button id="btnAction" data-track-on="click"></button>
Tracking result: {name: "btnAction-click", type: "action"...}
<button data-track-on="mouseover" data-track-name="MyAction" data-track-type="navigation"></button>
Tracking result: {name: "MyAction", type: "navigation"...}
Example of tracking a successfull order.
/**
* Please note that you must supply a product price with one of the following attributes : 'price', 'priceTaxFree' (you can also supply both price values, with and without taxes if you want).
*/
atInternet.trackOrder({
page: "pageName", // page of the order
name: "my-product", // name of your product
price: 42, // taxes included product price (required only if priceTaxFree is not supplied)
//priceTaxFree: 42, // price tax free (required only if price is not supplied)
quantity: 1, // amount of product (default is 1)
status: 3, // status of the order (default is 3 : validated)
level2: "1", // (optional) if not configured in defaults you must specify your project id
visitorId: "123" // (optional) set identifiedVisitor.id sent with each hit
});
Example of tracking a custom event.
atInternet.trackEvent({
page: "pageName", // page that raised the event
event: "eventName", // raised event
level2: "1", // (optional) if not configured in defaults you must specify your project id
visitorId: "123" // (optional) set identifiedVisitor.id sent with each hit
});
grunt
: to build.grunt watch
: will rebuild your project when a file change. Also re-launch Karma when a spec file change.grunt test
: to test specs files with Karma/Jasmine.grunt release --type=major|minor|patch
: to release your module.You've developed a new cool feature ? Fixed an annoying bug ? We'd be happy to hear from you !
Have a look in CONTRIBUTING.md
$ npm test
See https://github.com/ovh-ux/ng-at-internet/blob/master/LICENSE
FAQs
ATInternet tracking library wrapper for AngularJS
We found that ng-at-internet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 13 open source maintainers collaborating on the project.
Did you know?
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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.