Hacking APIs  Introduction
6:26
5 ай бұрын
Selecting the right CASB
7:15
Жыл бұрын
Implementing a CASB
10:19
Жыл бұрын
CASB: Threat Protection
10:17
Жыл бұрын
CASB: Visibility
10:16
Жыл бұрын
understanding CASB
10:03
Жыл бұрын
CASB Curtain Raiser
3:25
Жыл бұрын
NFTables in a nutshell
18:55
Жыл бұрын
Realizing a Zero Trust Network
20:16
3 жыл бұрын
ZTN The Adversarial View
7:54
3 жыл бұрын
Zero Trust Network: Trusting Traffic
20:30
Zero Trust Networks: Trusting Users
17:56
Zero Trust Networks: Trusting Devices
24:24
Пікірлер
@pushpa19-c3m
@pushpa19-c3m Ай бұрын
Healthcare is being revolutionized by artificial intelligence. AI is revolutionizing medical research and patient care by speeding up medication development and increasing diagnostic accuracy. Healthcare's Future: #MedicalInnovation #SmythOS #AIinHealthcare
@pankajmunje2255
@pankajmunje2255 2 ай бұрын
One of the finest explanations of CASB .thanks
@TheThinkersQuest
@TheThinkersQuest 4 ай бұрын
which authentication do u recommend? what do you use in your implementation?
@migorotek
@migorotek 4 ай бұрын
I use jwt .. imho it’s a lot safer and ease of use.
@rakesh4651
@rakesh4651 4 ай бұрын
What are some common vulnerabilities associated with asymmetric encryption methods?
@migorotek
@migorotek 4 ай бұрын
Asymmetric encryption is the best you can have currently in the encryption methods. As of today I see the threat of only quantum computers which are closest to breaking it. Apart from these you may have 3rd lib issues, Man-in-the-Middle Attacks, Social Engineering Attacks
@UdayTest-ml7qd
@UdayTest-ml7qd 4 ай бұрын
Thanks for video, have some doubts 1. Is API security test means API Injection? Do we need any special software's for doing API security test? 2. Is API security test done on websites like facebook, google, etc.. ? How to do it? 3. Also how to certify if application is secure? 4. Can you also prepare a video on how to do API Security test with examples?
@migorotek
@migorotek 4 ай бұрын
1. SQL injection is one of the many ways of testing API's security. 2. API security testing has no limitations to websites. If a website uses an API it can be tested for security. In fact social media websites like FB & Google have higher risk of getting hacked. 3. If the security team (typically a combo of red & blue teams) should certify the application. 4. I will do a video on API security testing.
@rakesh4651
@rakesh4651 4 ай бұрын
👍
@UdayTest-ml7qd
@UdayTest-ml7qd 4 ай бұрын
In video I see about 'Decision table testing'! Is it a kind of Adhoc test? Is it best practice to write a separate test cases for Decision table testing? or else we should do this kind of testing on the fly? In video you mentioned different kinds of testing approaches, Is it good to write all the test cases for a specific feature? In that case for a small feature we get 300-500+ cases right? what you suggest? what is best practice of writing test cases?
@migorotek
@migorotek 4 ай бұрын
Decision table testing is particularly useful for systems with complex business logic and multiple conditions affecting outcomes. By laying out all possible combinations of inputs and corresponding actions, testers can ensure thorough and efficient testing coverage. Identify Conditions and Actions: Construct the Decision Table: Define Rules: Lemme give you a simplified insurance application system with two conditions and two actions: Conditions: Age > 18 Has a valid driver's license Actions: Approve application Require parental consent A decision table for this might look like: Rule Age > 18 Valid License Approve Application Require Parental Consent 1 Yes Yes Yes No 2 Yes No No No 3 No Yes No Yes 4 No No No Yes
@UdayTest-ml7qd
@UdayTest-ml7qd 4 ай бұрын
Good video. It gives clear vision to testers about the testing aspects
@migorotek
@migorotek 4 ай бұрын
Glad it was helpful!
@UdayTest-ml7qd
@UdayTest-ml7qd 4 ай бұрын
Thanks for video. I have few questions 1. What benefit does QA get by looking at API documentation at first glance? 2. How different is API documentation vs swagger? 3. Is this API docx is like planning/design docx which is primarily for developers?
@migorotek
@migorotek 4 ай бұрын
Ans 1: Quality Assurance guys gain several benefits by examining API documentation early in the development process. Understanding Functionality, Test Planning, Early Issue Detection, Automation Opportunities, Improved Collaboration. Ans 2: Traditional API documentation is often more detailed and tailored for human readers, providing extensive explanations, tutorials, and use cases, whereas Swagger-generated documentation is more standardized and may lack the narrative depth found in traditional documentation, but it excels in providing clear and concise API definitions. Ans 3: API docx is to provide comprehensive details on API endpoints, methods, parameters, request/response formats, authentication mechanisms, and error codes & to assist developers (both internal and external) in integrating with the API, testing it, and troubleshooting issues.
@rakesh4651
@rakesh4651 4 ай бұрын
Can you explain how JWTs ensure the integrity and confidentiality of the data being transmitted? I want to understand how the signature and encryption mechanisms work together to provide a secure communication channel
@migorotek
@migorotek 4 ай бұрын
JWTs ensure the integrity of the data by using digital signatures. The header of JWT specifies the signing algorithm (e.g., HMAC, RSA), and the signature is created by hashing the encoded header and payload with a secret key or private key. Upon receipt, the recipient can verify the token's integrity by recreating the signature and comparing it with the one provided in the JWT, ensuring the data hasn't been altered. Confidentiality, while not inherently provided by JWTs, can be achieved by using JSON Web Encryption or transmitting JWTs over secure channels like HTTPS. JWE encrypts the payload, ensuring only authorized parties can read it, while HTTPS encrypts the entire communication channel, protecting the JWT during transmission.
@LakshmikanthVeera
@LakshmikanthVeera 4 ай бұрын
Can you do one on grey box testing? I think that is the only one left out in the testing types.
@migorotek
@migorotek 4 ай бұрын
Sure. Will do
@sharvanimarathe4323
@sharvanimarathe4323 4 ай бұрын
Who writes API Documentation?
@migorotek
@migorotek 4 ай бұрын
API documentation, like any other technical documentation is written by tech pubs team. Usually they take it from swagger but it is the developer of the API who should take the responsibility of making sure all the points are covered. The consumer of the API is also a developer albeit developing another application which would be using this API. The QA team takes the responsibility of Auditing the API documentation, which is the essence of this video.
@rakesh4651
@rakesh4651 4 ай бұрын
Nice explanation 🎉 can you explain about the JWT in your future videos ...
@migorotek
@migorotek 4 ай бұрын
I made the video on JWTs. It’ll be available on Friday at 9pm IST
@ShankarBhakta-zk2ed
@ShankarBhakta-zk2ed 4 ай бұрын
Loved the format of the video. Simple visuals but detailed explanation of each of the points.👍
@migorotek
@migorotek 4 ай бұрын
Thank you
@LakshmikanthVeera
@LakshmikanthVeera 4 ай бұрын
I second that. For beginners like me, this is the best format to understand
@ShankarBhakta-zk2ed
@ShankarBhakta-zk2ed 5 ай бұрын
I want to be on the right side .. obviously!! LOL!!
@migorotek
@migorotek 4 ай бұрын
All of us would want the same 😀
@ShankarBhakta-zk2ed
@ShankarBhakta-zk2ed 5 ай бұрын
There was a spelling mistake in your conciseness 🖕
@Nathaniel-kz2lq
@Nathaniel-kz2lq 5 ай бұрын
May be a copy paste error 🙃
@migorotek
@migorotek 4 ай бұрын
Yes it was. Copied from the previous word while making the video 🤦‍♂️
@jackieo7113
@jackieo7113 8 ай бұрын
Thank you! very informative
@migorotek
@migorotek 8 ай бұрын
Glad it was helpful!
@jackieo7113
@jackieo7113 9 ай бұрын
Hi there - this was EXTREMELY helpful thank you. Consider putting that Gartner link in the description to make it easier to access. Appreciate you sharing your wisdom - thank you so much
@migorotek
@migorotek 9 ай бұрын
Thanks. Will surely do
@jeeaspirant9724
@jeeaspirant9724 Жыл бұрын
Imagine playing a bullet with it
@migorotek
@migorotek Жыл бұрын
That would be the last thing one can see 😳
@ramirotesting2268
@ramirotesting2268 Жыл бұрын
Nice content bro
@migorotek
@migorotek Жыл бұрын
Appreciate it
@gopakumarn9779
@gopakumarn9779 3 жыл бұрын
Superb Sir !!
@gopakumarn9779
@gopakumarn9779 3 жыл бұрын
Really interesting topic !!
@ibmserver9439
@ibmserver9439 3 жыл бұрын
Interesting!!!!!!
@deep001007
@deep001007 4 жыл бұрын
Experts only can make this kind of videos ..very helpful for me
@deep001007
@deep001007 4 жыл бұрын
This Video is really very useful and Tons of thanks for this