This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cve-2019-8449 | |
| The /rest/api/latest/groupuserpicker resource in Jira before version 8.4.0 allows remote attackers to enumerate usernames via an information disclosure vulnerability. | |
| https://jira.atlassian.com/browse/JRASERVER-69796 | |
| https://victomhost/rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true | |
| ===================================================================================================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <PS2X_lib.h> | |
| //for v1.6 | |
| /****************************************************************** | |
| set pins connected to PS2 controller: | |
| - 1e column: original | |
| - 2e colmun: Stef? | |
| replace pin numbers by the ones you use | |
| ******************************************************************/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const int rmPwm = 3 ; | |
| const int lmPwm= 2; | |
| const int rm1= 34 ; | |
| const int rm2= 30 ; | |
| const int lm1= 38; | |
| const int lm2 = 24; | |
| void setup() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <PS2X_lib.h> | |
| //for v1.6 | |
| /****************************************************************** | |
| set pins connected to PS2 controller: | |
| - 1e column: original | |
| - 2e colmun: Stef? | |
| replace pin numbers by the ones you use | |
| ******************************************************************/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| command = "" | |
| started = False | |
| while True: | |
| command = input ("> ").lower() | |
| if command =="start": | |
| if started: | |
| print ("car is already started!") | |
| else : |