-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathpdf_locker.py
39 lines (28 loc) · 1.18 KB
/
pdf_locker.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Import the necessary libraries
import PyPDF2, getpass # getpass is for getting password with some level of security
from colorama import Fore, init
# Initialize colorama for colored output
init()
# Function to lock pdf
def lock_pdf(input_file, password):
with open(input_file, 'rb') as file:
# Create a PDF reader object
pdf_reader = PyPDF2.PdfReader(file)
# Create a PDF writer object
pdf_writer = PyPDF2.PdfWriter()
# Add all pages to the writer
for page_num in range(len(pdf_reader.pages)):
pdf_writer.add_page(pdf_reader.pages[page_num])
# Encrypt the PDF with the provided password
pdf_writer.encrypt(password)
# Write the encrypted content back to the original file
with open(input_file, 'wb') as output_file:
pdf_writer.write(output_file)
# Get user input
input_pdf = input("Enter the path to the PDF file: ")
password = getpass.getpass("Enter the password to lock the PDF: ")
# Lock the PDF using PyPDF2
print(f'{Fore.GREEN}[!] Please hold on for a few seconds..')
lock_pdf(input_pdf, password)
# Let the user know it's done
print(f"{Fore.GREEN}[+] PDF locked successfully.")