Giter Club home page Giter Club logo

paywallr's Issues

Find a new/better name

The name Unpaywall is used by another browser addon providing access to open source science articles. (Can be found here). This issue should be used to find another name in order to avoid confusion.

VRM Gruppe funktioniert nicht

Hi,

das entschlüsseln von Seiten der VRM Gruppe funktioniert leider nicht. Getestet in Firefox sowie Chrome. Unter Chrome auch nochmal separat mittels "Kann Webseiten lesen und ändern - wenn Addon angeklickt wird".

Chrome spuckt unter "Fehler" folgendes aus:

`const d = document;

const observer = new MutationObserver(function (mutations, me) {
[...d.getElementsByTagName("meta")].map(n => n.getAttribute("property") == "laterpay:connector:config_token" && n.remove());
});

d.getElementsByTagName("meta")[1].getAttribute("name") == "isPremiumArticle" &&
d.getElementsByTagName("meta")[1].getAttribute("content") == "1" &&
observer.observe(d, {
childList: true,
subtree: true
});`

Wobei die Zeile 7
d.getElementsByTagName("meta")[1].getAttribute("name") == "isPremiumArticle" &&
gelb Hinterlegt ist.

Hoffe das hilft irgendwie weiter, sorry bin nur Enduser. ;-)

Implement shz.de decryption

This issue is for discussing the decryption of shz.de articles.

They are saved with an encryption moving all letters inside a string split by space into another position. The position changes per article, but not per reload. The decryption probably happens in this script.

When loading without uBlock Origin, the text gets replaced by Lorem Ipsum.

Remove VRM

VRM switched to Cxense and therefore can't be unlocked anymore.

Proper implementation of ze.tt gr.een Bypass

The articles published on ze.tt gr.een will be deleted afterwards by the paywall script included in header.js, which also includes several other important functions to ensure a working side header.

FUNKE pages encrypting with ROT13

OTZ (content not visible)
TA (content not visible)
WAZ (content visible)
WP (content visible)
WR (content visible)
NRZ (content visible)

Hildesheimer Allgemeine Zeitung

Articles get blurred and encrypted. Decryption script is embedded.

function decryptCharcode(n, start, end, offset) {
    n = n + offset;
    if (offset > 0 && n > end) {
        n = start + (n - end - 1);
    } else if (offset < 0 && n < start) {
        n = end - (start - n - 1);
    }
    return String.fromCharCode(n);
}

function decryptString(enc, offset) {
    var dec = "";
    var len = enc.length;
    for (var i = 0; i < len; i++) {
        var n = enc.charCodeAt(i);
        if (n >= 0x2B && n <= 0x3A) {
            dec += decryptCharcode(n, 0x2B, 0x3A, offset);
        } else if (n >= 0x40 && n <= 0x5A) {
            dec += decryptCharcode(n, 0x40, 0x5A, offset);
        } else if (n >= 0x61 && n <= 0x7A) {
            dec += decryptCharcode(n, 0x61, 0x7A, offset);
        } else {
            dec += enc.charAt(i);
        }
    }
    return dec;
}

function linkTo_UnCryptMailto(s) {
    location.href = decryptString(s, 3);
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.