Cyberpunk 2077, reboot animation using GPU enhanced motion techniques.
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
| Library agressor; | |
| // blogpost : https://kpmg.com/nl/en/home/insights/2024/12/mortar-loader-in-practice-stealth-attack-with-microsoft-office-add-ins-and-onedrive.html | |
| {$mode objfpc} {$H+} // take a deep breath | |
| uses | |
| Classes, windows, blowfish, runner,base64, shell_loader, | |
| strutils, SysUtils,syscalls, Core,jwawinbase; |
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
| <div class="tabs cloak"> | |
| <ul> | |
| <li class="new"> | |
| <a href="#">+</a> | |
| </li> | |
| </ul> | |
| <div class="content"></div> | |
| </div> |
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
| // check the list of fonts at https://unpkg.com/browse/[email protected]/fonts/ | |
| // the list can also be seen on demo of Figlet library: | |
| // http://patorjk.com/software/taag/#p=display&f=Standard&t=jQuery%20Terminal | |
| figlet.defaults({ fontPath: 'https://unpkg.com/figlet/fonts/' }); | |
| figlet.preloadFonts(['Standard', 'Slant'], ready); | |
| var term; | |
| function ready() { | |
| term = $('body').terminal(function(cmd) { |
A Pen by Robin Selmer on CodePen.
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
| var term; | |
| function delay(time) { | |
| return new Promise(r => setTimeout(r, time)); | |
| } | |
| // --------------------------------------------------------------------------------- | |
| Promise.all([fortune(), fonts()]).then(async ([fortune]) => { | |
| term = $('body').terminal(async function(command) { | |
| const {name, args, rest} = $.terminal.parse_command(command); | |
| const options = $.terminal.parse_options(args); |
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
| <!-- | |
| For quick introduction to the library check: | |
| https://itnext.io/how-to-create-interactive-terminal-like-website-888bb0972288 | |
| --> |
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
| using System; | |
| using System.Runtime.InteropServices; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.IO; | |
| using System.Net; | |
| namespace callback_function |
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
| function steal_token(pid:Dword):string; | |
| const | |
| LOGON_WITH_PROFILE = $00000001; | |
| var | |
| hproc,tokenhandle,hProcessToken,duplicateTokenHandle,currenttokenHandle : Thandle; | |
| gettoken,impersonateUser,createProcess,duplicateToken,getcurrenttoken,isokay:boolean; | |
| si: TStartupInfow; | |
| pi: TPROCESSINFORMATION; | |
| SA: TSecurityAttributes; |
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
| program project1; | |
| {$mode objfpc}{$H+} | |
| uses | |
| {$IFDEF UNIX}{$IFDEF UseCThreads} | |
| cthreads, | |
| {$ENDIF}{$ENDIF} | |
| Classes, SysUtils,FPHTTPClient,process,CustApp; |
NewerOlder