diff --git a/docs/jargon.1.gz b/docs/jargon.1.gz index 504a60c..20f2774 100644 Binary files a/docs/jargon.1.gz and b/docs/jargon.1.gz differ diff --git a/docs/jargon.html b/docs/jargon.html index bd7d773..9e5ee84 100644 --- a/docs/jargon.html +++ b/docs/jargon.html @@ -18,7 +18,7 @@ Free Documentation License".

Generated

-This file last generated Friday, 16 November 2018 11:45AM UTC +This file last generated Thursday, 22 November 2018 10:46AM UTC

Glossary

@@ -3819,6 +3819,10 @@ This file last generated Friday, 16 November 2018 11:45AM UTC

[aka "CC"] A set of public licenses similar in spirit to copyleft or open source licenses but whose application is to works other than software, such as documentation, artwork, audio and video content. Creative commons represents the permeation of ideas which began in the free software movement into other areas of society.

+

credential stuffing

+

+ To maliciously gain access to user accounts by trying lots of usernames and passwords, which are derrived either from lists of commonly used passwords or obtained from previous database leaks. The attacker uses the often valid heuristic that many users will often use the same login credentials on lots of different sites or is just lazy and uses an easy to guess login, such as their email username and password123. +

creep

1. v. To advance, grow, or multiply inexorably. In hackish usage this verb has overtones of menace and silliness, evoking the creeping horrors of low-budget monster movies.

diff --git a/docs/jargon-org.txt b/docs/jargon.org similarity index 99% rename from docs/jargon-org.txt rename to docs/jargon.org index 8a34553..1133687 100644 --- a/docs/jargon-org.txt +++ b/docs/jargon.org @@ -19,7 +19,7 @@ Free Documentation License". * Generated -This file last generated Friday, 16 November 2018 11:45AM UTC +This file last generated Thursday, 22 November 2018 10:46AM UTC * Glossary ** ( @@ -3201,6 +3201,9 @@ n. The (false) belief that large, innovative software designs can be completely *** creative commons [aka "CC"] A set of public licenses similar in spirit to copyleft or open source licenses but whose application is to works other than software, such as documentation, artwork, audio and video content. Creative commons represents the permeation of ideas which began in the free software movement into other areas of society. +*** credential stuffing +To maliciously gain access to user accounts by trying lots of usernames and passwords, which are derrived either from lists of commonly used passwords or obtained from previous database leaks. The attacker uses the often valid heuristic that many users will often use the same login credentials on lots of different sites or is just lazy and uses an easy to guess login, such as their email username and password123. + *** creep 1. v. To advance, grow, or multiply inexorably. In hackish usage this verb has overtones of menace and silliness, evoking the creeping horrors of low-budget monster movies. diff --git a/makeJargon.py b/makeJargon.py index 255b6ac..04e950e 100755 --- a/makeJargon.py +++ b/makeJargon.py @@ -254,5 +254,5 @@ if __name__ == "__main__": publishername = "My Name" entries = jargonGetEntries('entries') jargonToManpage("docs/jargon.1", entries, version, publishername) - jargonToOrgMode("docs/jargon-org.txt", entries, version, publishername) + jargonToOrgMode("docs/jargon.org", entries, version, publishername) jargonToHTML("docs/jargon.html", entries, version, publishername)