Tuesday, December 6, 2011

Malware Analysis Tutorial 6: Analyzing Self-Extraction and Decoding Functions

Learning Goals:

  1. Use Immunity Debugger to Analyze and Annotate Binary Code.
  2. Understand the Techniques for Self-Extraction in Code Segment.
Applicable to:
  1. Computer Architecture
  2. Operating Systems Security
1. Introduction


In this tutorial, we discuss several interesting techniques to analyze decoding/self-extraction functions, which are frequently used by malware to avoid static analysis. The basic approach we use here is to execute the malware step by step, and annotating the code.

1.1 Goals
We will examine the following functions in Max++ (simply set a breakpoint at each of the following addresses):
  • 0x00413BC2
  • 0x00413BDD
  • 0x00413A2B
  • 0x00410000
  • 0x00413BF2

1.2 General Techniques
 We recommend that you try your best to analyze the aforementioned functions first, before proceeding to section 2. In the following please find several useful IMM tricks:
  • Annotating code: this is the most frequently used approach during a reverse engineering effort. Simply right click in the IMM code pane and select "Edit Comment", or press the ";" key.
  • Labeling code: you could set a label at an address (applicable to both code and data segments). When this address is used in JUMP and memory loading instructions, its label will show up in the disassembly. You can use this to assign mnemonics to functions and variables. To label an address, right click in IMM code pane and select "Label".
  • Breakpoints: to set up software breakpoints press F2. To set up hardware breakpoints, right click in code pane, and select Breakpoints->Hardware Breakpoint on Execution. At this moment, set soft breakpoints only.
  • Jump in Code Pane: you can easily to any address in the code segment by right clicking in code pane and enter the destination address.


2. Analysis of Code Beginning at 0x00413BC2

As shown in Figure 1, there are four related instructions, POP ESI (located at 0x00413BC1), SUB ESI, 9 (located at 0x00413BC2), and the POP ESP and RETN instructions.

Figure 1. Code Starting at 0x00413BC2

 As discussed in Tutorial 5, the RETN instruction (at 0x00413BC0) is skipped by the system when returning from INT 2D (at 0x00413BBE). Although it looks like the POP ESI (at 0x413BC1) is skipped, it is actually executed by the system. This results in that ESI now contains value 0x00413BB9 (which is pushed by the instruction CALL 0x00413BB9 at 0x00413BB4). Then the SUB ESI, 9 instruction at 0x00413BC2 updates the value of ESI to 0x00413BB0. Then the next LODS instruction load the memory word located at 0x00413BB0 into EAX (you can verify that the value of EAX is now 0). Then it pops the top element in the stack into EBP, and returns. The purpose of the POP is to simply enforce the execution to return (2 layers) back to 0x413BDD.

Note that if the INT 2D has not caused any byte scission, i.e., the RETN instruction at 0x00413BD7 will lead the execution to 0x413A40 (the IRETD instruction). IRETD is the interrupt return instruction and cannot be run in ring3 mode (thus causing trouble in user level debuggers such as IMM). From this you can see the purpose of the POP EBP instruction at 0x413BC6.

Conclusion: the 4 instructions at 0x00413BC2 is responsible for directing the execution back to 0x00413BDD. This completes the int 2d anti-debugging trick.

3. Analysis of Function 0x00413BDD


Figure 2: Function 0x00413BDD


As shown in Figure 2, this function clears registers and calls three functions: 0x413A2B (decoding function), 0x00401000 (another INT 2D trick), and call EBP (where EBP is set up by the function 0x00401000 properly). We will go through the analysis of these functions one by one.


4. Analysis of Function 0x00413A2B.

Figure 3: Function 0x00413A2B


 Function 0x00413A2B has six instructions and the first five forms a loop (from 0x00413A2B to 0x00413A33), as shown in Figure 3.  Consult the Intel instruction manual first, and read about the LODS and STORS instruction before proceeding to the analysis in the following.

  Essentially the LODS instruction at 0x00413A2B loads a double word (4 bytes) from the memory word pointed by ESI to EAX, and STOS does the inverse. When the string copy finishes, the LODS (STOS) instruction advances the ESI (EDI) instruction by 4. The next two instructions following the LODS instruction perform a very simple decoding operation, it uses EDX as the decoding key and applies XOR and SUB operations to decode the data.

  The loop ends when the EDI register is equal to the value of EBP. If you observe the values of EBP and EDI registers in the register pane, you will find that this decoding function is essentially decoding the region from 0x00413A40 to 0x00413BAC.

  Set a breakpoint at 0x00413A35 (or F4 to it), you can complete and step out of the loop. To view the effects of this decoding function, compare Figure 4 and Figure 5. You can see that before decoding, the instruction at 0x00413A40 is an IRET (interrupt return) instruction and after the decoding, it becomes the INT 2D instruction!

 Figure 4: Region 0x00413A40 to 0x00413BAC (before decoding)



 Figure 5: Region 0x00413A40 to 0x00413BAC (after decoding)



 Now let's right click on 0x00413A2B and select "Label" and we can mark the function as "basicEncoding". (This is essentially to declare 0x00413A2B as the entry address of function "BasicEncoding"). Later, whenever this address shows in the code pane, we will see this mnemonic for this address. This will facilitate our analysis work greatly.

5. Analysis of Code Beginning at 0x00410000

Function 0x00410000 first clears the ESI/EDI growing direction and immediately calls function 0x00413A18. At 0x00413A18, it again plays the trick of INT 2D. If the malware analyzer or binary debugger does not handle by the byte scission properly, the stack contents will not be right and the control flow will not be right (see Tutorials 3,4,5 for more details of INT 2D).

In summary,  when the function returns to 0x00413BED, the EBP should have been set up property. Its value should be 0x00413A40.

6. Analysis of Code Beginning at 0x00413A40

 We now delve into the instruction CALL EBP (0x00413A40). Figure 6 shows the function body of 0x00413A40. It begins with an INT 2D instruction (which is continued with a RET instruction). Clearly, in regular/non-debugged setting, when EAX=1 (see Tutorial 4), the byte instruction RET should be skipped and the execution should continue.

Figure 6: Another Decoding Function

Challenge of the Day

 The major bulk of the function is a multiple level nested loop which decodes and overwrites (a part) of the code segment. Now here comes our challenge of the day.

(1) How do you get out of the loop? [hint: the IMM debugger has generously plotted the loop structure (each loop is denoted using the solid lines on the left). Place a breakpoint at the first instruction out of the loop - look at 0x00413B1C]

(2) Which part of the code/stack has been modified? What are the starting and ending addresses? [Hint: look at the instructions that modify RAM, e.g., the instruction at 0x00413A6F, 0x00413A8D, 0x00413B0E.

209 comments:

  1. For challenge question #1 we can get out of the loop by placing a break point at 00413B1C or if we are using immunity debugger we simply click on the address and press f4 which would execute the instructions until the highlighted address is reached.

    ReplyDelete
  2. Hi, I wish to be a regular contributor of your blog. I have read your blog. Your information is really useful for beginner. I did QTP Training in Chennai at Fita training and placement academy which offer best Selenium Training in Chennai with years of experienced professionals. This is really useful for me to make a bright career.

    ReplyDelete
  3. Thanks for giving great information about the malware analysis.I would known lot of information about the malaware analysis with the help of this article.This gives a detailed infomation.
    SEO Training in chennai|SEO Training chennai


    ReplyDelete
  4. Thanks for sharing this valuable information to our vision. You have posted a trust worthy blog keep sharing.

    Cloud Computing Training in chennai | Cloud Computing Training chennai

    ReplyDelete
  5. Nice article i was really impressed by seeing this article, it was very interesting and it is very useful for Learners.
    VMWare Training in chennai | VMWare Training chennai



    ReplyDelete
  6. Very fun. Sometimes 401000 is mistyped as 410000. Also, having breakpoints enabled in code that is being modified by Max can mess up the execution, which IMM warns you about. I'm not sure exactly what's going on here though my guess is that IMM is inserting some hidden byte code which gets processed by the decryption. Anyway, the only solution I can find is to have only the `call ebp` breakpoint enabled, then once you reach it you can enable the other breakpoints since the code will have decrypted. I imagine this would get annoying and I wonder if there is a fix?

    ReplyDelete
    Replies
    1. Yep, just read the beginning on tutorial 7. Software breakpoints will not work for self modifying code

      Delete
  7. At Music School Sydney, Learning Music is FUN! Learn Piano, Guitar, Singing, Saxophone, Flute, Violin, Drums and More. Book a Free Lesson Online Today!

    ReplyDelete
  8. Really awesome blog. Your blog is really useful for me. Thanks for sharing this informative blog. Keep update your blog.
    Oracle Training In Chennai

    ReplyDelete

  9. hi,this is excellent information..we provide by very easy learning good information.

    Function Point Estimation Training

    ReplyDelete
  10. Great article. Glad to find your blog. Thanks for sharing.
    dotnet training in chennai

    ReplyDelete
  11. Very useful information in this article! its really useful for Java development company, but we request new updated article as ASP.NET reached one notch up

    ReplyDelete


  12. Java application development

    Thanks for the awesome share
    Hi we at Colan Infotech Private Limited , a company which is Situated in US and India,
    will provide you best java web service and our talented java application development team will assure you best result
    and we are familiar with international markets,
    We work with customers in a wide variety of sectors. Our talented team can handle all the aspects of Java web application development,
    we are the best among the
    Java development company
    .

    We have quite an extensive experience working with java development services .
    we are the only Java application development company which offer custom services to a wide range of industries by
    exceeding our client’s expectations.
    You can even interact directly with the team regarding your project, just as you would with your in-house team.
    Our pro team will provide you the best java appliaction development services .
    We are best among the java development companies in Chennai ,
    please review our customer feedbacks so that you may find a clue about us. If you want one stop solution for java development outsourcing,
    Colan infotech is the only stop you need to step in.
    Colan Infotech is the unique java web development company were our team of unique
    java application developer were ranked top in java enterprise application development.

    ReplyDelete
  13. Very Nice Blog I like the way you explained these things.
    Indias Fastest Local Search Engine
    CALL360
    Indias Leading Local Business Directory

    ReplyDelete
  14. GREEN WOMEN HOSTELGreen Women hostel is one of the leading Ladies hostel in Adyar and we serving an excellent service to Staying people, We create a home atmosphere, it is the best place for Working WomenOur hostel Surrounded around bus depot, hospital, atm, bank, medical Shop & 24 hours Security Facility



    ReplyDelete
  15. Malware analysis is the study or process of determining the functionality, origin and potential impact of a given malware sample such as a virus, worm, Trojan horse, rootkit, or backdoor.It's helps to us all determine developed of analytics Our tutorial helpless to be all beginner members.
    Hadoop Training in Chennai | Hadoop Training Institute in Chennai

    ReplyDelete
  16. This comment has been removed by the author.

    ReplyDelete

  17. This was an nice and amazing and the given contents were very useful and the precision has given here is good.
    Selenium Training Institute in Chennai

    ReplyDelete
  18. Wow it is really wonderful and awesome thus it is very much useful for me to understand many concepts and helped me a lot. it is really explainable very well and i got more information from your blog.
    Data Science Training in Chennai
    Data science training in bangalore
    Data science online training
    Data science training in pune
    Data science training in kalyan nagar

    ReplyDelete
  19. Great Article...Thanks for sharing the best information of malware analysis.It was so good to read and useful to improve my knowledge as updated one.

    Android Training
    Android Training in Chennai


    ReplyDelete
  20. I’m experiencing some small security issues with my latest blog, and I’d like to find something safer. Do you have any suggestions?
    nebosh courses in chennai

    ReplyDelete
  21. Greetings. I know this is somewhat off-topic, but I was wondering if you knew where I could get a captcha plugin for my comment form? I’m using the same blog platform like yours, and I’m having difficulty finding one? Thanks a lot.


    Amazon Web Services Training in Pune | Best AWS Training in Pune

    AWS Online Training | Online AWS Certification Course - Gangboard

    ReplyDelete
  22. I am obliged to you for sharing this piece of information here and updating us with your resourceful guidance. Hope this might benefit many learners. Keep sharing this gainful articles and continue updating us.
    Angularjs Training in Chennai
    Angularjs Training
    Angularjs course in Chennai
    Angularjs Training institute in Chennai
    Angular 2 Training in Chennai
    Angular 4 Training in Chennai
    angularjs training center in chennai

    ReplyDelete
  23. It would have been the happiest moment for you,I mean if we have been waiting for something to happen and when it happens we forgot all hardwork and wait for getting that happened.
    python training in pune
    python training institute in chennai
    python training in Bangalore

    ReplyDelete
  24. We are Offerining DevOps Training in Bangalore,Chennai, Pune using Class Room. myTectra offers Live Online DevOps Training Globally

    ReplyDelete
  25. This is an awesome post.Really very informative and creative contents. These concept is a good way to enhance the knowledge.

    Cloud Training
    Android Training
    Data Science Training
    Tableau Training in Chennai

    ReplyDelete
  26. Outstanding blog thanks for sharing such wonderful blog with us ,after long time came across such knowlegeble blog. keep sharing such informative blog with us.
    Airport Ground Staff Training Courses in Chennai | Airport Ground Staff Training in Chennai | Ground Staff Training in Chennai

    ReplyDelete
  27. This is a good post. This post give truly quality information. I’m definitely going to look into it. Really very useful tips are provided here. thank you so much. Keep up the good works.
    RPA Training in Chennai
    Selenium Training in Chennai
    Robotic Process Automation Training
    RPA course
    Selenium Courses in Chennai
    Selenium training Chennai

    ReplyDelete
  28. Your good knowledge and kindness in playing with all the pieces were very useful. I don’t know what I would have done if I had not encountered such a step like this.

    Java training in Chennai | Java training in Tambaram | Java training in Chennai | Java training in Velachery

    Java training in Chennai | Java training in Omr | Oracle training in Chennai

    ReplyDelete

  29. Thanks for making me this article. You have done a great job by sharing this content in here. Keep writing article like this.

    Node JS Training in Chennai
    Node JS Training

    ReplyDelete
  30. Thanks for such a great article here. I was searching for something like this for quite a long time and at last I’ve found it on your blog. It was definitely interesting for me to read about their market situation nowadays. Well written article. Thank You Sharing with Us.android interview questions and answers | android best practices 2018

    ReplyDelete
  31. It would have been the happiest moment for you,I mean if we have been waiting for something to happen and when it happens we forgot all hardwork and wait for getting that happened.

    Java training in Chennai | Java training in USA |

    Java training in Bangalore | Java training in Indira nagar | Java training in Bangalore | Java training in Rajaji nagar

    ReplyDelete
  32. feeling so good to read your information's in the blog.
    thanks for sharing your ideas with us and add more info.
    AWS Training center in Bangalore
    AWS Training in Ambattur
    AWS Training in Saidapet

    ReplyDelete
  33. I enjoy what you guys are usually up too. This sort of clever work and coverage! Keep up the wonderful works guys I’ve added you guys to my blog roll.
    best safety training in chennai

    ReplyDelete
  34. Nice Post. Looking for more updates from you. Thanks for sharing.

    eiffeltowerfacts
    Technology

    ReplyDelete
  35. This comment has been removed by the author.

    ReplyDelete
  36. Thanks For Sharing This More Informative And Useful Content, keep sharing more posts like this.
    DevOps Online Training

    ReplyDelete
  37. More informative,thanks for sharing with us.
    this blog makes the readers more enjoyable.keep add more info on your page.
    german language in bangalore
    German Training in Perambur
    German Training in Nungambakkam

    ReplyDelete
  38. I really thank you for your innovative post.I have never read a creative ideas like your posts.
    here after i will follow your posts which is very much help for my career.
    devops training and certification in bangalore
    best devops course in bangalore
    devops Training in Mogappair
    devops Training in Thirumangalam

    ReplyDelete
  39. Thanks for sharing with us and please add more information's.

    atstartups
    Guest posting sites

    ReplyDelete


  40. Such a wonderful article on AWS. I think its the best information on AWS on internet today. Its always helpful when you are searching information on such an important topic like AWS and you found such a wonderful article on AWS with full information.Requesting you to keep posting such a wonderful article on other topics too.
    Thanks and regards,
    AWS training in chennai
    aws course in chennai what is the qualification
    aws authorized training partner in chennai
    aws certification exam centers in chennai
    aws course fees details
    aws training in Omr

    ReplyDelete
  41. Outstanding blog thanks for sharing such wonderful blog with us ,after long time came across such knowlegeble blog. keep sharing such informative blog with us.
    machine learning training in chennai
    machine learning course in Chennai
    machine learning certification in chennai
    Android training in Chennai
    PMP training in chennai

    ReplyDelete
  42. This information is impressive. I am inspired with your post writing style & how continuously you describe this topic. Eagerly waiting for your new blog keep doing more.
    JAVA Training in Chennai
    JAVA Course in Chennai
    Advanced java training in chennai
    JAVA Training in Chennai
    JAVA Course in Chennai

    ReplyDelete
  43. Thank u for this information
    http://www.mistltd.com

    ReplyDelete
  44. Expected to form you a next to no word to thank you once more with respect to the decent recommendations you've contributed here.
    iosh course in chennai

    ReplyDelete
  45. This comment has been removed by the author.

    ReplyDelete
  46. the article is nice.most of the important points are there.thankyou for sharing a good one.
    UiPath Courses in Chennai
    rpa Training in OMR
    rpa Training in Adyar

    ReplyDelete
  47. Thanks For Sharing The Information The Information shared Is Very Valuable Please Keep Updating Us Time Just Went On reading The Article Python Online Training Aws Online Course DataScience Online Course Devops Online Course

    ReplyDelete
  48. The knowledge of technology you have been sharing thorough this post is very much helpful to develop new idea.
    here by i also want to share this.
    data science online training

    ReplyDelete
  49. Great Article… I love to read your articles because your writing style is too good, its is very very helpful for all of us and I never get bored while reading your article because, they are becomes a more and more interesting from the starting lines until the end.
    Check out : big data training in chennai
    big data course in chennai
    big data hadoop training in chennai
    big data certification in chennai

    ReplyDelete
  50. A great deal of valuable information allocated by you. Assuredly, this might turn out to be pertinent for a majority of tyro's attentiveness. Keep up with this admirable work. One can speak and practice English in an effective way, just by downloading English Learning App on your own smartphone, which you can use whenever and wherever you want to practice your communication skills with experts.
    English practice app | English Speaking App

    ReplyDelete
  51. The article was up to the point and described the information very effectively. Thanks to blog author for wonderful and informative post.
    R Training Institute in Chennai | R Programming Training in Chennai

    ReplyDelete
  52. Thanks a lot very much for the high quality and results-oriented help. I won’t think twice to endorse your blog post to anybody who wants and needs support about this area.
    R Training Institute in Chennai | R Programming Training in Chennai

    ReplyDelete
  53. This is really impressive post, I am inspired with your post, do post more blogs like this, I am waiting for your blogs.

    best java training institute in chennai
    java j2ee training in chennai

    ReplyDelete
  54. I feel really happy to have seen your webpage and look forward to so many more entertaining times reading here. Thanks once more for all the details.
    Clinical SAS training in Chennai | Clinical SAS training Chennai

    ReplyDelete
  55. Thanks for sharing information about Malware Analysis Tutorial.
    learn digital academy offers, Advanced Digital Marketing Master Course in Bangalore.
    intense in-class training program, practically on Live Projects.

    ReplyDelete
  56. simply superb, mind-blowing, I will share your blog to my friends also
    I like your blog, I read this blog please update more content on hacking,Nice post
    Tableau online Training

    Android Training

    Data Science Course

    Dot net Course

    iOS development course

    ReplyDelete
  57. i just go through your article it’s very interesting time just pass away by reading your article looking for more updates.
    Thank you for sharing.
    Devops

    ReplyDelete
  58. This comment has been removed by the author.

    ReplyDelete
  59. Excellent Blog. I really want to admire the quality of this post. I like the way of your presentation of ideas, views and valuable content. No doubt you are doing great work. I’ll be waiting for your next post. Thanks .Keep it up! Kindly visit us @
    Christmas Gift Boxes | Wallet Box
    Perfume Box Manufacturer | Candle Packaging Boxes | Luxury Leather Box | Luxury Clothes Box | Luxury Cosmetics Box
    Shoe Box Manufacturer | Luxury Watch Box

    ReplyDelete
  60. Wow, what an awesome spot to spend hours and hours! It's beautiful and I'm also surprised that you had it all to yourselves!
    Kindly visit us @ Best HIV Treatment in India | Top HIV Hospital in India | HIV AIDS Treatment in Mumbai | HIV Specialist in Bangalore
    HIV Positive Treatment in India | Medicine for AIDS in India

    ReplyDelete
  61. great post and creative ideas. I am happy to visit and read useful articles here. I hope you continue to do the sharing through the post to the reader.

    AWS Online Training

    ReplyDelete

  62. Thanks for sharing, very informative blog.
    ReverseEngineering

    ReplyDelete
  63. Thanks a lot for sharing us about this update. Hope you will not get tired on making posts as informative as this. 

    ReactJS Online Training

    ReplyDelete
  64. English for beginners

    Learning English is much easier now!
    Learn English in a fun way, native speakers are here to help you online. Practice English speaking online with a native teacher.

    How to learn Spanish
    Join Online course if want to speak with native Spanish tutor. Native Spanish tutor is always there to help you out all the time.

    ReplyDelete
  65. If you have any queries so feel free to call us on Lexmark Printer Toll Free Number +1-855-499-1999 and get assistance from our associate regarding to fix the problem in Lexmark Printer.

    ReplyDelete
  66. There could be several codes and tech glitches that may occur in AOL account. we provide online support for ​ AOL customers if you have any type of query related to your AOL account then contact us and visit a website. Most of them can not be solved even if AOL customer use a different browser on mac. if you need urgent help then contact
    AOL Customer Service Number
    AOL Support Number
    AOL Mail Help Number
    AOL Mail login
    Change Aol password

    ReplyDelete

  67. For your PC ultimate protection, you can use the Webroot antivirus trial version free from Webroot website www.webroot.com/safe. You can protect your system against viruses, threats, malware and more online threats.

    ReplyDelete
  68. Nice post. I learned some new information. Thanks for sharing.
    DevOps Online Training

    ReplyDelete
  69. It is very good and useful for students and developer .Learned a lot of new things from your post!Good creation ,thanks for give a good information at Devops.devops training in bangalore

    ReplyDelete
  70. You're so awesome! I don't believe I've read anything like this before. So nice to discover someone with some unique thoughts on this topic. Seriously.. many thanks for starting this up. This web site is one thing that is required on the web, someone with a little originality!
    vodafone lottery winner

    ReplyDelete
  71. It is really explainable very well and i got more information from your site.Very much useful for me to understand many concepts and helped me a lot.ServiceNow training in bangalore

    ReplyDelete
  72. Congratulations This is the great things. Thanks to giving the time to share such a nice information.best Mulesoft training in bangalore

    ReplyDelete
  73. The content was very interesting, I like this post. Your explanation way is very attractive and very clear.data science training in bangalore

    ReplyDelete
  74. thanks for the informative stuff...really glad you shared it...

    aws course

    ReplyDelete
  75. Enjoyed reading the article above, really explains everything in detail, the article is very interesting and effective. Thank you and good luck…

    Start your journey with Database Developer Training in Bangalore and get hands-on Experience with 100% Placement assistance from experts Trainers @Bangalore Training Academy Located in BTM Layout Bangalore.

    ReplyDelete
  76. I read this post your post so nice and very informative post thanks for sharing this post.

    Real Time Experts is a leading SAP CRM Training Institutes in Bangalore providing real time and Job oriented SAP CRM Course with real time Expert Trainers who are Working Professionals with 6+ Years of SAP CRM Experience.

    ReplyDelete
  77. Such a great word which you use in your article and article is amazing knowledge. thank you for sharing it.

    Learn DevOps from the Industry Experts we bridge the gap between the need of the industry. eTechno Soft Solutions provide the Best DevOps Training in Bangalore .

    ReplyDelete
  78. Really i appreciate the effort you made to share the knowledge. The topic here i found was really effective...

    Get SAP HANA Training in Bangalore from Real Time Industry Experts with 100% Placement Assistance in MNC Companies. Book your Free Demo with Softgen Infotech.

    ReplyDelete
  79. hp is one of the most trusted brand in the world.Reach our hp customer support team for getting quick assistance from the team of professional experts.Get instant solution at hp support phone number is available 24*7 in usa.
    HP Customer Service
    HP Customer Service phone number
    HP printer support number
    HP Support number

    ReplyDelete
  80. Whatever we gathered information from the blogs, we should implement that in practically then only we can understand that exact thing clearly data science training online , but it’s no need to do it, because you have explained the concepts very well. It was crystal clear, keep sharing..

    ReplyDelete
  81. Your style is very unique in comparison to other folks I have read stuff from. Many thanks for posting when you have the opportunity, Guess I will just book mark this web site.

    KBC Lottery Number Check
    KBC Lottery Number Check Online
    Kaun Banega Crorepati Lottery Winner

    ReplyDelete
  82. Nice informations. Thank you so much for sharing this information.
    python course in coimbatore

    data science course in coimbatore

    android training institutes in coimbatore

    amazon web services training in coimbatore

    big data training in coimbatore

    RPA Course in coimbatore

    artificial intelligence training in coimbatore

    ReplyDelete
  83. Effective blog with a lot of information. Ijust Shared you the link below for ACTE .They really provide good level of training and Placement,I just Had Tableau Classes in ACTE , Just Check This Link You can get it more information about the Tableau course.
    Java training in chennai | Java training in annanagar | Java training in omr | Java training in porur | Java training in tambaram | Java training in velachery

    ReplyDelete
  84. Good article! I found some useful educational information in your blog about Java, it was awesome to read, thanks for sharing this great content to my vision
    Java training in chennai | Java training in annanagar | Java training in omr | Java training in porur | Java training in tambaram | Java training in velachery

    ReplyDelete
  85. I have been searching for a useful post like this on salesforce course details, it is highly helpful for me and I have a great experience with this Salesforce Training who are providing certification and job assistance. Salesforce training Noida 

    ReplyDelete
  86. I am so happy to found your blog post because it's really very informative. Please keep writing this kind of blogs and I regularly visit this blog. Have a look at my services.
    I have found this Salesforce training in India worth joining course. Try this Salesforce training in Hyderabad with job assistance. Join Salesforce training institutes in ameerpet with certification. Enroll for Salesforce online training in hyderabad with hands on course.

    ReplyDelete
  87. Thanks for provide great informatic and looking beautiful blog, really nice required information & the things i never imagined and i would request, wright more blog and blog post like that for us. Thanks you once agian
    we offer services birth certificate in delhi which inculde name add in birth certificate and birth certificate correction complete process is online and we offer birth certificate online and we offer this birth certificate apply online same service offers at yourdoorstep at birth certificate in ghaziabad our dream to provide birth certificate in india and other staes like birth certificate in bengaluru and birth certificate in gurgaon book service with us birth certificate in noida also, service at yoursdoorstep only.

    ReplyDelete
  88. You have a good point here!I totally agree with what you have said!!Thanks for sharing your views...hope more people will read this article!!!
    DevOps Training in Chennai | DevOps Training in anna nagar | DevOps Training in omr | DevOps Training in porur | DevOps Training in tambaram | DevOps Training in velachery

    ReplyDelete
  89. Its a great pleasure reading your post.Its full of information I am looking for and I love to post a comment that "The content of your post is awesome" Great work.
    DevOps Training in Chennai | DevOps Training in anna nagar | DevOps Training in omr | DevOps Training in porur | DevOps Training in tambaram | DevOps Training in velachery

    ReplyDelete
  90. Thanks a lot for sharing kind of information. Your article provide such a great information with good knowledge.You make me happy for sharing, in this post some special information.thanks.

    python training in bangalore

    python training in hyderabad

    python online training

    python training

    python flask training

    python flask online training

    python training in coimbatore

    ReplyDelete
  91. An overwhelming web journal I visit this blog, it's unfathomably amazing. Unusually, in this present blog's substance made inspiration driving truth and reasonable. The substance of data is enlightening.


    Full Stack Course Chennai
    Full Stack Training in Bangalore

    Full Stack Course in Bangalore

    Full Stack Training in Hyderabad

    Full Stack Course in Hyderabad

    Full Stack Training

    Full Stack Course

    Full Stack Online Training

    Full Stack Online Course



    ReplyDelete
  92. Good article and straight to the point. I am not sure if this is really the best place to ask but do you folks have any thoughts on where to employ some professional writers? Thx 🙂
    Java Training in Chennai

    Java Training in Bangalore

    Java Training in Hyderabad

    Java Training
    Java Training in Coimbatore

    ReplyDelete

  93. Hey there, You have done a great job. I’ll certainly digg it and personally suggest to my friends.
    I am sure they will be benefited from this website.
    Here is the kink of Latest Image editor:
    https://softserialskey.com/easy-cut-studio-crack/
    Download free from here☝

    ReplyDelete
  94. The clearness to your publish is just cool and that i can assume you’re an expert in this subject.
    Well together with your permission let me to seize your RSS feed to stay updated with approaching
    post. Thanks one million and please keep up the enjoyable work.
    https://softkeygenpro.com/avast-premier-crack/

    ReplyDelete
  95. I’m really impressed with your post. If you want to teach your kids with apps and online activities you have to check out this. The Learning Apps

    ReplyDelete
  96. I’m really impressed with your article, such great & usefull knowledge you mentioned here. Thank you for sharing such a good and useful information here in the blog
    DevOps Training in Chennai

    DevOps Course in Chennai



    ReplyDelete
  97. Great Article
    Cyber Security Projects


    Networking Security Projects

    JavaScript Training in Chennai

    JavaScript Training in Chennai

    The Angular Training covers a wide range of topics including Components, Angular Directives, Angular Services, Pipes, security fundamentals, Routing, and Angular programmability. The new Angular TRaining will lay the foundation you need to specialise in Single Page Application developer. Angular Training

    ReplyDelete
  98. Studies recommend the Salesforce client base differs enormously with practically all sort of organizations leaning toward Salesforce CRM Implementation. best Salesforce training in Pune

    ReplyDelete
  99. Edraw Max crack
    Edraw Max activation code includes templates, vector symbols, and a user-friendly interface and documentation. Hence, it becomes the best-designed design application on the internet. Comes for all major operating systems. We know there are three main operating systems:
    https://pcfullcrack.org/

    ReplyDelete
  100. Awesome blog thank you for sharing.

    Make your career development the best by learning software courses in the best software training institute in Chennai.
    power bi certification in chennai
    msbi training in chennai
    Docker Training in Chennai
    android training in chennai
    ios training in chennai
    Xamarin Training in Chennai

    ReplyDelete


  101. Aimore Tech is the Best Software training institute in chennai with 6+ years of experience. We are offering online and classroom training.
    ASP.NET Training in Chennai

    ReplyDelete
  102. Whatsapp Number Call us Now! 01537587949
    It Training In Dhaka
    USA pone web iphone repair USA
    USA SEX WEB careful
    bd sex video B tex
    bd sex video sex video
    bd sex video freelancing course

    ReplyDelete
  103. Dobra web stranica : Paling Luas
    Dobra web stranica : One Piece
    Dobra web stranica : Terbesar
    Dobra web stranica : One Piece
    Dobra web stranica : Resep
    Dobra web stranica : One Piece
    Dobra web stranica : One Piece
    Dobra web stranica : Terluas

    ReplyDelete
  104. This post is so interactive and informative.keep update more information...
    SEO Training in Tambarama
    SEO Training in Chennai

    ReplyDelete
  105. It’s always so sweet and also full of a lot of fun for me personally and
    my office colleagues to search your blog a minimum of thrice in a
    week to see the new guidance you have got.

    ReplyDelete