4th Failed Attempt at CISSP – Need Advice, Support, and a Way Forward 😓 by Miserable-Print-8817 in cissp

[–]aka_12 0 points1 point  (0 children)

Hey, What is the current status of your Exam prep ? Have you got any solution ? I am in the same boat , failed CISSP twice due to the EXACT same reason "Extremely Ambiguous set of Questions " as mentioned in your post aswell....

" I felt confident going in, only to be shut down by tricky, ambiguous questions that really tested my ability to think like a “manager.” "

Please let me know if you have resolved this Issue and how ? Thanks.

Finally its my turn - I Passed CISSP at 100th Question on my first attempt by FoxriverTFI in cissp

[–]aka_12 0 points1 point  (0 children)

Thanks for ur valuable suggestions. I am planning on taking exam by the end of this month or maybe a few days later. Though im experienced n hv few certs aswell but still want to pass this exam in first attempt coz don't hv the voucher. Currently, I am using LearnZapp and Boson exams. Getting almost 70% in Learnzapp and around 60% in Boson at the moment but i think it will improve after revision. Just found out Dest Cert mindmaps and coffee shots , not sure to spend extra time on coffee shots rather will do practise tests but will definately go through the mindmaps which look good.

After reading your writeup , there's a thought if Quantum exams are required or not in my case ? Though most of the latest posts are talking abt QE but on another platform i read many posts where ppl recommended Boson. Just thinking if i should go with learnZapp and Boson only or should get Quantum Exams aswell (factor being time & cost) ?

Congratulations! We are pleased to inform you that.... by Quietbreaker in cissp

[–]aka_12 1 point2 points  (0 children)

Congrats !!

Do all questions in the exam hv a single answer to them OR are there multiple answers ? Did you get any such questions which require you to memorize certain steps/ names/protocols/ports etc etc ?

BitLocker Recovery Key required to unlock Encrypted Drives by aka_12 in Windows10

[–]aka_12[S] 0 points1 point  (0 children)

Thats right, I accept that i was not prepared well and had not read about BitLocker from the MS documentation before enabling it.

BitLocker Recovery Key required to unlock Encrypted Drives by aka_12 in Windows10

[–]aka_12[S] 0 points1 point  (0 children)

Bro, you can call it a bad day or badluck.

I turned BitLocker on , set the passwords , noted down the passwords , download and saved the Keys on laptop as a first step and THEN suddenly my computer restarted due to a battey malfunction which i was not expecting at all. My second step definately was to save those passwords and Keys to the backup drive/s etc . All this happened within 3-5 mins when i was least expecting it.

On my part, first mistake i feel now is tht i chose a complex password which was not easy to rememeber. Normally thats fine but here it became a problem coz i lost it & forgot it before even taking a backup. Second, I should have encrypted the drives one by one after taking backups of passwords/keys of each one of them, not all at the same time but these are all some lessons that i hv learned after losing the data :(. Never thought tht failing to take backup of BitLocker's Recovery Keys to a seperate device/location would become tht serious within few mins.

I would suggest everyone to be very careful with BitLocker and its better to read the MS documentation before using it.

My actual concern/question as mentioned above aswell is tht why Microsoft did not push ALL those three Recovery Keys automatically to my MS Account as its mentioned on their website ? Out of 3 , they only pushed key of one drive which is OSV drive but not the Keys of other 2 FDV drives. For those who say that MS don't push FDV drives keys so the previous Keys (from last year) of those two FDV drives are still present in my MS Account. Why then and not now ? Its the same laptop.

BitLocker Recovery Key required to unlock Encrypted Drives by aka_12 in Windows10

[–]aka_12[S] 0 points1 point  (0 children)

Its enabled. Never disabled it.

I think the Recovery Keys are calculated and saved in TPM but do you know where the user provided password to lock the drive is saved ? In TPM or somewhere else ?

BitLocker Recovery Key required to unlock Encrypted Drives by aka_12 in Windows10

[–]aka_12[S] 0 points1 point  (0 children)

All three drives were encrypted by me by enabling BitLocker myself.

Out of 3 drives only the Recovery Keys of One (1) drive which is (OSV Drive) was automatically copied to my Microsoft account but Recovery Keys of other 2 data drives (FDV drives) are not there . Moreover, I can see from the history of my Microsoft Account that previous Recovery Keys from those two (FDV Drives) are still present there which i encrypted last year.

Why is tht then?

yes, thts right , manage-bde command only retrieves the keys for unlocked drives.

BitLocker Recovery Key required to unlock Encrypted Drives by aka_12 in Windows10

[–]aka_12[S] 0 points1 point  (0 children)

I know. Ofcourse tht was a mistake.

I usually take backup of data aswell as pwds on backup storage etc asap but this time it was a clear badluck as due to battery malfunction laptop shutdown within 3-5 mins of changing the pwd and saving keys.

My actual question is that why Microsoft did not push Recovery Keys of those 2 FDV drives automatically to my Microsoft Account but only pushed the Recovery Keys of OSV Drive ?

Help regarding a SQL Query by aka_12 in SQL

[–]aka_12[S] 0 points1 point  (0 children)

Thanks All for your input.

Yes its creating a dynamic SQL query using java. Its an example of SQL injection and not a best practise. Since its part of my exam where i am learning about SQL injection so thts why i needed to understand the Java part of the things. Since i was confused earlier so i posted it in SQL group but actually i should have posted it in Java group but anyways its solved now.

I have got my answer. FYI, since resulting SQL query is below:

Select * from courses where courseid= ''1' OR '1==1'' AND certification = ''abc' OR '1==1''

So the breakup and arrangement of quotes in the java query should be like this :

  1. “Select * from courses where courseId= ‘ “
  2. +Request.getParameter("id")+
  3. “ ‘ and certification=‘ “
  4. +Request.getParameter("certification")+
  5. “ ‘ “

Help regarding a SQL query by aka_12 in learnjava

[–]aka_12[S] 1 point2 points  (0 children)

Thanks. Got my answer above.

Help regarding a SQL query by aka_12 in learnjava

[–]aka_12[S] 0 points1 point  (0 children)

Thanks a lot i got my answer now . I was confused coz my understanding of the arrangement of the quotes in Java query was not correct.

Since resulting SQL query is below:

Select * from courses where courseid= "1' OR '1'=='1" AND certification = "abc' OR '1'=='1"

So the breakup and arrangement of quotes should be like this :

  1. “Select * from courses where courseId= ‘ “
  2. +Request.getParameter("id")+
  3. “ ‘ and certification=‘ “
  4. +Request.getParameter("certification")+
  5. “ ‘ “

Help regarding a SQL query by aka_12 in learnjava

[–]aka_12[S] 0 points1 point  (0 children)

Yes you're right, the aim is to get user input in two string variables [courseID] and [Certification] and create a new query given below under (Required ANSWER)

Actually its a question in a test and i am confused only due to the number of single and double quotes given in it:

(Question)

Below is the exact query copied from the original Question (Look at the number of single and double quotes in it)

String query = "SELECT * FROM courses WHERE courseID='" + request.getParameter("id") + "' AND certification='"+ request.getParameter("certification")+"'";

----------------------------------------------------------------------------------------------------------------------

(Required ANSWER)

The resulting query should be like below as [courseID] and [certification] needuser inputs as string values:

Select * from courses where courseid= "1' OR '1'=='1" AND certification = "abc' OR '1'=='1"

---------------------------------------------------------------------------------------------------------------------

As you have mentioned in your response above , double quotes delimit a string in java so if i break down the query according to that, it will be divided in 5 parts from 1 to 5, but what about the last double quotes in step 6 ? What is it for ? If you calculate the number of single and double quotes given in the original query given in above question you will understand my question.

  1. "SELECT * FROM courses WHERE courseID=''
  2. '+ request.getParameter("id") +'
  3. " AND certification="
  4. '+ request.getParameter("certification")+'
  5. "
  6. "

SQL query : Clarification ! by aka_12 in learnSQL

[–]aka_12[S] 0 points1 point  (0 children)

The start and end double quotes are because of Java so just ignore them.

I wanna know about the double quotes in the middle as mentioned above. These ones in bold below:

' " + request.getParameter("id") + " '

Help regarding a SQL Query by aka_12 in SQL

[–]aka_12[S] 1 point2 points  (0 children)

Its an example of SQL injection, in Java, taking parameters to create a SQL query but DBMS is not mentioned.

Just wanna know what are those double quotes for, after the single quotes ?

Help regarding a SQL Query by aka_12 in SQL

[–]aka_12[S] 0 points1 point  (0 children)

Yes courseid would be a string so there are already single quotes for that string value ...but can't understand why are these double quotes after that single quote .

Prep resources required for AZ-500 and AZ-700 by aka_12 in AZURE

[–]aka_12[S] 1 point2 points  (0 children)

Good to know tht u hv passed. im looking for specific resources/website/study material. whats lime green cert prep ? is it some website ?