Mes abréviations: ELK, ITIL, PERT, PHP…
Hardware:
CPU : Central Process Unit
RISC : Reduced Instruction Set Computer
CISC : Complex Instruction Set Computer
UAL : Arithmetic Logic Unit
EEPROM : Electrically Erasable Programmable Read-Only Memory
CMOS : Complementary-symmetry Metal-Oxide Semiconductor
BIOS : Basic Input Output System
ROM : Read Only Memory
RAM : Random Access Memory
ATA : Advanced Technology Attachement
SATA : Serial ATA
CRC : Cyclic Redundancy Check
RAID : Redundant Array of Inexpensive Disks
FAT : File Allocation Table
FSCK : File System ChecK
NTFS : NTFS : New Technology File System
APFS : APple File System
ISCSI : Internet Small Computer System Interface
UUID : Universal Unique IDentifier
USB : Universal Serial Bus
PCI : Peripherial Component Interconnect
ePCI : Extended PCI
PGU : Processor Graphic Unit
SAN : Stockage Area Network
DRBD : Distributed Replicated Block Device
EFI : Extensible Firmware Interface
Infrastructure:
ELK : Elastic Logstash Kubernete
HA : High Availability
IaaS : Infrastructure As A Service
Network:
STP : Shielded Twisted Pair
NIC : Network Interface Card
SDH : Synchronous Digital Hierarchy
IP : Internet Protocol
IPX : Internet Packet eXchange
TCP : Transfer Control Protocol
UDP : User Data Protocol
ACK : ACKnowledge character
VRRP : Virtual Router Redundancy Protocol
STP : Spanning Tree Protocol
RSTP : Rapid Spanning Tree Protocol
PPTP : Point-to-Point Tunneling Protocol
ADSL : Asymetric Digital Subscriber Line
ATM : Asynchronous Transfer Mode
SDSL : Symetric Digital Subscriber Line
ISDN : Integrated Services Digital Network
WAN : Wide Area Network
MAN : Metropolitain Access Network
LAN : Local Area Network
VLAN : Virtual Local Area Network
CIDR : Classless Inter-Domain Routing
NTP : Network Time Protocol
NIS : Network Information Service
ARP : Address Resolution Protocol
TTL : Time To Live
OSPF : Open Shortest Path First
RIP : Routing Information Protocol
DHCP : Dynamic Host Control Protocol
DNS : Domain Name System
Authentification/security/Annuaire:
ACL : Access Control List
ADS : Active Directory Service
SAM : Security Account Manager
LDAP : Lightweight Directory Access Protocol
PGP : Pretty Good Privacy
SSL : Secure Socket Layer
TLS : Transport Layer Security
CHAP : Challenge Handshake Authentification Protocol
CSP : Credential Service Provider
EAP : Extensible Authentication Protocol
PKI : Public key infrastructure
PKCS : Public Key Cryptography Standards
POC : Proove of Concept
Software/modeling/norme:
UML : Unified Modeling Language
ITIL : Information Technology Infrastructure Library
W3C: World Wide Web Consortium
DARPA : Defense Advanced Research Projects Agency
POSIX : Portable Operating System Interface
ISO : International Standardisation Organization
OSI : Open Systems Interconnection
IETF : Internet Engineering Task Force
IEEE : Institute of Electrical and Electronics Engineers
ANSI : American National Standards Institute
URL : Uniform Resource Locator
URI : Uniform Resource Identifier
SMTP : Simple Mail Transfer Protocol
SMB : Server Message Block
IDL : Interface Definition Language
HTML : HyperText Message Language
CSS : Cascading Style Sheets
SIP : Session Init Protocol
CAPTCHA : Completely Automated Public Turing test to Tell Computers and Humans Apart
CIFS : Common Internet File System
COBOL : COmmon Business-Oriented Language
JSP : Java Server Page
JRE : Java Runtime Environnement
JVM : Java Virtual Machine
JAR : Java ARchive
TAR :
JNI : Java Native Interface
JSON : JavaScript Object Notation
SQL : Structured Query Language
CORBA : Common Object Request Broker Architecture
COM : Component Object Model
DLL : Dynamic Link Library
CR : carriage return
LF : Line Feed
CPAN : Comprehensive Perl Archive Network
PID : Process IDentifier
PERT : Program Evaluation and Review Technique
PRINCE : PRojects IN Controlled Environments (ITIL)
PABX : Private Automatic Branch eXchange
SaaS : Software As A Service
PaaS : Platform As A Service
VM : Virtual Machine
SLA : Service Level Agreement
SNMP : Simple Network Management Protocol
NLS : Native Language Support
AJAX : Asynchronous JavaScript and XML
XML : eXtended Message Language
XUL : Xml-based User interface Language
OSF : Open Source Fondation
TTY : Text TeletYpe
TCL : Tool Command Language
ASCII : American Standard Code for Information Interchange
CIFS : Common Internet File System
RIA : Rich Internet Application
EDIFACT : Electronic Data Interchange For Administration, Commerce and Transport.
EDI : Electronic Data Interchange
KPI : Key Performance Indicator
QoS : Quality Of Service
RFC : Request For Comments
FAQ : Frequently Ask Question
WYSIWYG : What You See Is What You Get
GNU : Gnu’s Not Unix
GUI : Graphical User Interface
GDPR : General Data Protection Regulation
FSF : Free Software Foundation
Afficher le code source html de votre site web
On peut ajouter « view-source: » devant l’adresse web(URL) de votre site web si l’option proposée « afficher code source »de votre navigateur ne fonctionne pas…
Sécurisation et vérification de l’intégrité de son site web https(SRI)
Le SRI(SubResourceIntegrity) permet de vérifier l’authenticité de votre site web en cas de modification de votre script(<script…>…</script>) ou de votre feuille de style(<link….>). L’option « integrity=cle-sha-generée » sera positionnée dans ses balises.
Le SRI est comme la vérification de la signature de votre fichier par md5 ou autre etc….
Le SRI peut utiliser le mode de cryptage sha en 256,384 ou 512).
Lors du chargement de votre site web, le navigateur vérifiera l’authenticité si la page sera être affichée ou elle affichera l’erreur. Bien entendu, tout cela est correct si le site web utilise le protocole https(s: avec certificat ssl).
Comment obtient-on cette clé à intégrer dans script ou link de votre page web?
exemple(require openssl to generate the key):
mon_terminal>cat monCodeJS.js | openssl dgst -sha384 -binary | openssl enc -base64 -A
qzQiyUiHGNELcnjN+p/bdUxk25FeQb1q6mqJ05LLfRAjhvbKHhpQXC1GFcimpQ2G
Dans votre page web, on aura:
…
<script src="https://monsiteweb/js/monCodeJS.js" integrity="sha384-gqzQiyUiHGNELcnjN+p/bdUxk25FeQb1q6mqJ05LLfRAjhvbKHhpQXC1GFcimpQ2G" crossorigin="anonymous">Javascript not ready!!!</script>